{"title":"BLACK \u0026 WHITE LUXURY COLLECTION","description":"\u003cp\u003e\u003cspan\u003eMoody. Elegant. Timeless.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003eA curated collection of monochrome masterpieces crafted for the world’s most refined interiors.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003eHere, shadow and light move with quiet power — revealing forms that are sculptural, emotional, and beautifully restrained.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003eDesigned for penthouses, luxury hotels, architectural homes, and galleries seeking drama without chaos, these works bring pure atmospheric sophistication into any space.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003eEach piece is a statement of presence — bold, cinematic, and unforgettable.\u003c\/span\u003e\u003c\/p\u003e","products":[{"product_id":"eclipse-en-pointe","title":"ECLIPSE EN POINTE Luxury Ballet Wall Art | Eclipse en Pointe by Kasian Art Studio","description":"\u003cbody\u003e\n\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eEclipse en Pointe — Luxury Ballet Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A refined black-and-white ballet artwork capturing strength, balance, and motion—designed for luxury homes and hospitality interiors. Limited edition of 50.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n    \n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-elevated: #141414;\n        --text-primary: #f5f5f5;\n        --text-secondary: #a8a8a8;\n        --accent-stone: #c4b5a0;\n        --accent-silver: #9a9a9a;\n        --accent-charcoal: #4a4a4a;\n        --divider: rgba(255, 255, 255, 0.1);\n    }\n    \n    html {\n        scroll-behavior: smooth;\n    }\n    \n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n    \n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n    \n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n    \n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n    \n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n    \n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n    \n    .nav-links a:hover {\n        color: var(--accent-stone);\n    }\n    \n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 2rem 4rem;\n        overflow: hidden;\n    }\n    \n    \/* Flowing arc animation *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 20%;\n        right: -10%;\n        width: 800px;\n        height: 800px;\n        border: 1px solid rgba(196, 181, 160, 0.15);\n        border-radius: 50%;\n        animation: arcFlow 20s ease-in-out infinite;\n    }\n    \n    @keyframes arcFlow {\n        0%, 100% { \n            transform: rotate(0deg) scale(1);\n            opacity: 0.3;\n        }\n        50% { \n            transform: rotate(15deg) scale(1.1);\n            opacity: 0.5;\n        }\n    }\n    \n    \/* Subtle motion blur effect *\/\n    .hero::after {\n        content: '';\n        position: absolute;\n        top: 30%;\n        left: 20%;\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(ellipse at center, rgba(196, 181, 160, 0.08) 0%, transparent 60%);\n        animation: breatheMotion 15s ease-in-out infinite;\n        pointer-events: none;\n    }\n    \n    @keyframes breatheMotion {\n        0%, 100% { \n            transform: translateY(0) scale(1);\n            opacity: 0.3;\n        }\n        50% { \n            transform: translateY(-30px) scale(1.15);\n            opacity: 0.5;\n        }\n    }\n    \n    .hero-content {\n        text-align: center;\n        max-width: 900px;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1s ease-out;\n    }\n    \n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n    \n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        letter-spacing: 2px;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        text-shadow: 2px 2px 20px rgba(196, 181, 160, 0.3);\n        color: var(--accent-stone);\n    }\n    \n    .edition {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        color: var(--accent-silver);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n    \n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        font-style: italic;\n        color: var(--text-primary);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n    \n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-charcoal);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n    \n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-charcoal);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n    \n    .cta-button:hover::before {\n        left: 0;\n    }\n    \n    .cta-button:hover {\n        border-color: var(--accent-stone);\n        color: var(--text-primary);\n    }\n    \n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n    \n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n        color: var(--accent-stone);\n    }\n    \n    .divider {\n        width: 80px;\n        height: 1px;\n        background: linear-gradient(90deg, transparent, var(--accent-silver), transparent);\n        margin: 3rem auto;\n    }\n    \n    \/* Video Section *\/\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border-radius: 0;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);\n        border: 1px solid rgba(196, 181, 160, 0.15);\n    }\n    \n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n    \n    \/* Description Section *\/\n    .description {\n        background: var(--bg-elevated);\n        border-radius: 0;\n    }\n    \n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .short-description {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        line-height: 1.6;\n        color: var(--accent-stone);\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n    \n    .long-description {\n        font-size: 1.1rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: left;\n    }\n    \n    .long-description p {\n        margin-bottom: 1.5rem;\n    }\n    \n    .long-description strong {\n        color: var(--accent-stone);\n    }\n    \n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-dark);\n    }\n    \n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n    \n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.6rem;\n        line-height: 1.9;\n        color: var(--accent-silver);\n        text-align: center;\n        font-style: italic;\n        font-weight: 300;\n    }\n    \n    .backstory-text p {\n        margin-bottom: 1.5rem;\n    }\n    \n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n    \n    .feature-card {\n        background: var(--bg-elevated);\n        padding: 3rem 2rem;\n        text-align: center;\n        transition: transform 0.3s ease, box-shadow 0.3s ease;\n        border: 1px solid transparent;\n    }\n    \n    .feature-card:hover {\n        transform: translateY(-5px);\n        border-color: rgba(196, 181, 160, 0.2);\n        box-shadow: 0 10px 30px rgba(196, 181, 160, 0.1);\n    }\n    \n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-silver);\n    }\n    \n    .feature-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n        color: var(--accent-stone);\n        font-weight: 400;\n    }\n    \n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Stats Grid *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n    }\n    \n    .stat-card {\n        text-align: center;\n        padding: 2rem;\n        background: var(--bg-elevated);\n        border: 1px solid rgba(196, 181, 160, 0.15);\n    }\n    \n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 400;\n        color: var(--accent-stone);\n        margin-bottom: 0.5rem;\n    }\n    \n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n    \n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--bg-elevated);\n    }\n    \n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n    \n    .pairing-card {\n        text-align: center;\n        transition: transform 0.3s ease;\n        padding: 2rem;\n    }\n    \n    .pairing-card:hover {\n        transform: translateY(-5px);\n    }\n    \n    .pairing-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n        color: var(--accent-stone);\n        font-weight: 400;\n    }\n    \n    .pairing-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Collection CTA *\/\n    .collection-cta {\n        background: var(--bg-dark);\n        text-align: center;\n    }\n    \n    .collection-link {\n        display: inline-block;\n        margin-top: 2rem;\n        padding: 1.2rem 3rem;\n        border: 2px solid var(--accent-charcoal);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n    }\n    \n    .collection-link:hover {\n        background: var(--accent-charcoal);\n        border-color: var(--accent-stone);\n        color: var(--text-primary);\n    }\n    \n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-elevated);\n    }\n    \n    .target-spaces {\n        text-align: center;\n        margin-top: 3rem;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Luxury Brands *\/\n    .luxury-brands {\n        background: var(--bg-dark);\n        text-align: center;\n        padding: 4rem 2rem;\n    }\n    \n    .brands-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        letter-spacing: 3px;\n        color: var(--accent-silver);\n        margin-top: 2rem;\n    }\n    \n    \/* Final CTA *\/\n    .final-cta {\n        background: var(--bg-elevated);\n        text-align: center;\n        padding: 8rem 2rem;\n    }\n    \n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n        color: var(--accent-stone);\n        font-weight: 400;\n    }\n    \n    .final-cta .cta-button {\n        margin-top: 2rem;\n    }\n    \n    \/* Footer *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 3rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--divider);\n    }\n    \n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n    \n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n    \n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n    \n    .social-links a:hover {\n        color: var(--accent-stone);\n    }\n    \n    .copyright {\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n        letter-spacing: 1px;\n    }\n    \n    \/* Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n    \n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n    \n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        nav {\n            padding: 1rem;\n        }\n        \n        .nav-links {\n            display: none;\n        }\n        \n        .hero {\n            padding: 6rem 1rem 3rem;\n        }\n        \n        .hero::before,\n        .hero::after {\n            display: none;\n        }\n        \n        section {\n            padding: 4rem 1rem;\n        }\n        \n        .features-grid,\n        .stats-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#contact\"\u003eINQUIRE\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1\u003eEclipse en Pointe\u003c\/h1\u003e\n        \u003cp class=\"edition\"\u003eLimited Edition of 50\u003c\/p\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Eclipse%20en%20Pointe\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection id=\"about\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/cdnHGYH09qc\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description\"\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp class=\"short-description\"\u003eA sculptural ballet study capturing power, control, and transcendence in motion.\u003c\/p\u003e\n        \u003cdiv class=\"long-description\"\u003e\n            \u003cp\u003eEclipse en Pointe is a commanding celebration of disciplined strength and elegant surrender.\u003c\/p\u003e\n            \n            \u003cp\u003eSuspended mid-arc, the dancer forms a near-mythic silhouette—body extended beyond gravity, balanced between restraint and release. A sweeping arc of texture curves around the figure like a cosmic wind, evoking time, breath, and momentum. The palette is restrained—soft stone, charcoal, and shadow—allowing form to dominate with quiet authority.\u003c\/p\u003e\n            \n            \u003cp\u003eThis work speaks to precision rather than performance. It honors mastery earned through repetition, silence, and devotion. There is no excess—only intent.\u003c\/p\u003e\n            \n            \u003cp\u003eDesigned for collectors, designers, and hospitality curators who understand the psychology of space, Eclipse en Pointe anchors modern interiors with calm confidence. It belongs in skyline penthouses, executive lounges, gallery walls, and luxury residences where art must communicate strength without noise.\u003c\/p\u003e\n            \n            \u003cp\u003e\u003cstrong\u003eThis is not decorative movement. It is mastery captured in stillness.\u003c\/strong\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cdiv class=\"backstory-text\"\u003e\n            \u003cp\u003eWhere discipline becomes poetry—\u003c\/p\u003e\n            \u003cp\u003eand motion becomes silence.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"features\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e○\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is numbered and authenticated, ensuring exclusivity and long-term collector value. No reproductions beyond this edition will be created.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e○\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade materials ensure exceptional tonal depth and longevity exceeding 100 years. Printed with archival pigment inks on premium substrates, gallery-approved for luxury environments.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e○\u003c\/div\u003e\n            \u003ch3\u003eSculptural Mastery\u003c\/h3\u003e\n            \u003cp\u003eFigurative studies of movement and discipline maintain timeless appeal among sophisticated collectors. Designed for spaces valuing precision, restraint, and the poetry of human form.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Archival Rating\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eGrade Materials\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"pairings\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3\u003eNocturne Arc\u003c\/h3\u003e\n            \u003cp\u003eBlack and white motion abstract that echoes the flowing movement and disciplined energy of Eclipse en Pointe\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3\u003eSilent Radius\u003c\/h3\u003e\n            \u003cp\u003eMinimal sculptural form study that continues the narrative of balance, restraint, and architectural harmony\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cp style=\"text-align: center; margin-top: 3rem; color: var(--text-secondary); font-size: 1.1rem;\"\u003e\n        Together, these pieces create a refined narrative of movement, quiet discipline, and architectural harmony.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp style=\"color: var(--text-secondary); font-size: 1.1rem; max-width: 800px; margin: 0 auto;\"\u003e\n        Eclipse en Pointe is part of the Black \u0026amp; White Luxury Collection—a curated selection of monochrome works celebrating form, restraint, and timeless elegance.\n    \u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"collection-link\" target=\"_blank\"\u003eVIEW FULL COLLECTION\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned For\u003c\/h2\u003e\n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cp\u003eSkyline penthouses • Executive lounges • Gallery walls • Luxury residences\u003cbr\u003e\n        Hospitality suites • Ballet studios • Architectural firms • Curated corporate spaces\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands Strip --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3 style=\"font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 2px; color: var(--text-secondary); text-transform: uppercase;\"\u003eCurated For\u003c\/h3\u003e\n    \u003cdiv class=\"brands-list\"\u003e\n        Aman • Four Seasons • St. Regis • Ritz-Carlton Reserve\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"contact\"\u003e\n    \u003ch2\u003eAcquire Eclipse en Pointe\u003c\/h2\u003e\n    \u003cp style=\"color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; margin: 0 auto;\"\u003e\n        Limited to 50 numbered pieces. Reserve yours before this edition closes.\n    \u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Eclipse%20en%20Pointe%20-%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFACEBOOK\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePINTEREST\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header scroll effect\n    let lastScroll = 0;\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        const currentScroll = window.pageYOffset;\n\n        if (currentScroll \u003e 100) {\n            header.style.padding = '0.8rem 0';\n        } else {\n            header.style.padding = '1.5rem 0';\n        }\n\n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46076960506021,"sku":"4510227_16039","price":6071.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_4238.png?v=1764968056"},{"product_id":"nocturne-muse","title":"Nocturne Muse — Sculptural Noir Figure Study","description":"\u003cbody\u003e\n\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eNocturne Muse — Luxury Noir Figure Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade noir figurative artwork designed for penthouses, boutique hotels, and refined modern interiors. Limited edition of 50.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n    \n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-elevated: #141414;\n        --text-primary: #f5f5f5;\n        --text-secondary: #a8a8a8;\n        --accent-noir: #2a2a2a;\n        --accent-light: #e8e8e8;\n        --divider: rgba(255, 255, 255, 0.1);\n    }\n    \n    html {\n        scroll-behavior: smooth;\n    }\n    \n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n    \n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n    \n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n    \n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n    \n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n    \n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n    \n    .nav-links a:hover {\n        color: var(--text-primary);\n    }\n    \n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 2rem 4rem;\n        overflow: hidden;\n    }\n    \n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(ellipse at center, rgba(42, 42, 42, 0.3) 0%, transparent 70%);\n        animation: pulseNoir 8s ease-in-out infinite;\n    }\n    \n    @keyframes pulseNoir {\n        0%, 100% { opacity: 0.3; transform: scale(1); }\n        50% { opacity: 0.5; transform: scale(1.05); }\n    }\n    \n    .hero-content {\n        text-align: center;\n        max-width: 900px;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1s ease-out;\n    }\n    \n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n    \n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 600;\n        letter-spacing: 2px;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);\n    }\n    \n    .edition {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n    \n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        font-style: italic;\n        color: var(--accent-light);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n    \n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-noir);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n    \n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-noir);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n    \n    .cta-button:hover::before {\n        left: 0;\n    }\n    \n    .cta-button:hover {\n        border-color: var(--text-primary);\n    }\n    \n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n    \n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 600;\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n    \n    .divider {\n        width: 80px;\n        height: 2px;\n        background: var(--accent-noir);\n        margin: 3rem auto;\n    }\n    \n    \/* Video Section *\/\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border-radius: 0;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);\n    }\n    \n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n    \n    \/* Description Section *\/\n    .description {\n        background: var(--bg-elevated);\n        border-radius: 0;\n    }\n    \n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .short-description {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        line-height: 1.6;\n        color: var(--accent-light);\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n    \n    .long-description {\n        font-size: 1.1rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: left;\n    }\n    \n    .long-description p {\n        margin-bottom: 1.5rem;\n    }\n    \n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-dark);\n    }\n    \n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n    \n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.4rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: center;\n        font-style: italic;\n    }\n    \n    .backstory-text p {\n        margin-bottom: 2rem;\n    }\n    \n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n    \n    .feature-card {\n        background: var(--bg-elevated);\n        padding: 3rem 2rem;\n        text-align: center;\n        transition: transform 0.3s ease;\n    }\n    \n    .feature-card:hover {\n        transform: translateY(-5px);\n    }\n    \n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n    }\n    \n    .feature-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n    }\n    \n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Stats Grid *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n    }\n    \n    .stat-card {\n        text-align: center;\n        padding: 2rem;\n        background: var(--bg-elevated);\n    }\n    \n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 600;\n        color: var(--accent-light);\n        margin-bottom: 0.5rem;\n    }\n    \n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n    \n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--bg-elevated);\n    }\n    \n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n    \n    .pairing-card {\n        text-align: center;\n        transition: transform 0.3s ease;\n    }\n    \n    .pairing-card:hover {\n        transform: translateY(-5px);\n    }\n    \n    .pairing-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n    }\n    \n    .pairing-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Collection CTA *\/\n    .collection-cta {\n        background: var(--bg-dark);\n        text-align: center;\n    }\n    \n    .collection-link {\n        display: inline-block;\n        margin-top: 2rem;\n        padding: 1.2rem 3rem;\n        border: 2px solid var(--accent-noir);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n    }\n    \n    .collection-link:hover {\n        background: var(--accent-noir);\n        border-color: var(--text-primary);\n    }\n    \n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-elevated);\n    }\n    \n    .target-spaces {\n        text-align: center;\n        margin-top: 3rem;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Luxury Brands *\/\n    .luxury-brands {\n        background: var(--bg-dark);\n        text-align: center;\n        padding: 4rem 2rem;\n    }\n    \n    .brands-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        letter-spacing: 3px;\n        color: var(--text-secondary);\n        margin-top: 2rem;\n    }\n    \n    \/* Final CTA *\/\n    .final-cta {\n        background: var(--bg-elevated);\n        text-align: center;\n        padding: 8rem 2rem;\n    }\n    \n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n    \n    .final-cta .cta-button {\n        margin-top: 2rem;\n    }\n    \n    \/* Footer *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 3rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--divider);\n    }\n    \n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n    \n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n    \n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n    \n    .social-links a:hover {\n        color: var(--text-primary);\n    }\n    \n    .copyright {\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n        letter-spacing: 1px;\n    }\n    \n    \/* Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n    \n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n    \n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        nav {\n            padding: 1rem;\n        }\n        \n        .nav-links {\n            display: none;\n        }\n        \n        .hero {\n            padding: 6rem 1rem 3rem;\n        }\n        \n        section {\n            padding: 4rem 1rem;\n        }\n        \n        .features-grid,\n        .stats-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#contact\"\u003eINQUIRE\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1\u003eNocturne Muse\u003c\/h1\u003e\n        \u003cp class=\"edition\"\u003eLimited Edition of 50\u003c\/p\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Nocturne%20Muse\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection id=\"about\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/M01lyJ944fE\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description\"\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp class=\"short-description\"\u003eA masterful expression of control, elegance, and sensual restraint.\u003c\/p\u003e\n        \u003cdiv class=\"long-description\"\u003e\n            \u003cp\u003eNocturne Muse exists in the space between dominance and delicacy. Rendered in tonal noir, the figure is composed yet relaxed—one leg folded, the other grounded, hands poised with intention. The wide-brim hat obscures identity, inviting the viewer into mystery rather than recognition. This anonymity is deliberate. The subject is not a woman—she is a presence.\u003c\/p\u003e\n            \n            \u003cp\u003eThe sculptural shadows carve the body like marble, evoking atelier studies from Parisian studios while maintaining a modern, editorial confidence. The black bodysuit reads architectural; the skin, luminous. Every line is quiet. Every curve intentional.\u003c\/p\u003e\n            \n            \u003cp\u003eDesigned for elevated interiors—executive offices, designer lofts, penthouse studies, boutique hotel suites—this piece commands authority without excess. It speaks to collectors who understand that true power is never rushed, never loud.\u003c\/p\u003e\n            \n            \u003cp\u003e\u003cstrong\u003eThis artwork does not decorate a room. It commands it.\u003c\/strong\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cdiv class=\"backstory-text\"\u003e\n            \u003cp\u003eShe does not ask to be seen.\u003c\/p\u003e\n            \u003cp\u003eShe allows it.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"features\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is numbered and authenticated, ensuring exclusivity and long-term collector value. No reproductions beyond this edition will ever be created.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade materials ensure exceptional tonal depth and longevity exceeding 100 years. Printed with archival pigment inks on premium cotton substrates, gallery-approved for luxury environments.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eFigurative noir artwork maintains strong demand among sophisticated collectors. Designed for spaces that understand luxury beyond trend—penthouses, boutique hotels, executive offices, and private galleries.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Archival Rating\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eGrade Materials\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"pairings\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3\u003eSilent Line\u003c\/h3\u003e\n            \u003cp\u003eMinimal black abstract that echoes the architectural restraint and sculptural simplicity of Nocturne Muse\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3\u003eVeiled Gaze\u003c\/h3\u003e\n            \u003cp\u003eNoir portrait study that continues the theme of concealed identity and quiet confidence\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cp style=\"text-align: center; margin-top: 3rem; color: var(--text-secondary); font-size: 1.1rem;\"\u003e\n        Together they create a gallery-level narrative ideal for luxury offices, private salons, and hospitality corridors.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp style=\"color: var(--text-secondary); font-size: 1.1rem; max-width: 800px; margin: 0 auto;\"\u003e\n        Nocturne Muse is part of the Black \u0026amp; White Luxury Collection—a curated selection of timeless figurative and abstract works designed for sophisticated modern interiors.\n    \u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"collection-link\" target=\"_blank\"\u003eVIEW FULL COLLECTION\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned For\u003c\/h2\u003e\n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cp\u003eExecutive offices • Designer lofts • Penthouse studies • Boutique hotel suites\u003cbr\u003e\n        Private salons • Gallery walls • Hospitality corridors • Luxury residential spaces\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands Strip --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3 style=\"font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 2px; color: var(--text-secondary); text-transform: uppercase;\"\u003eCurated For\u003c\/h3\u003e\n    \u003cdiv class=\"brands-list\"\u003e\n        Aman • Four Seasons • St. Regis • Ritz-Carlton Reserve\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"contact\"\u003e\n    \u003ch2\u003eAcquire Nocturne Muse\u003c\/h2\u003e\n    \u003cp style=\"color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; margin: 0 auto;\"\u003e\n        Limited to 50 numbered pieces. Reserve yours before this edition closes.\n    \u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Nocturne%20Muse%20-%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFACEBOOK\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePINTEREST\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header scroll effect\n    let lastScroll = 0;\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        const currentScroll = window.pageYOffset;\n\n        if (currentScroll \u003e 100) {\n            header.style.padding = '0.8rem 0';\n        } else {\n            header.style.padding = '1.5rem 0';\n        }\n\n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46076990914725,"sku":"1905047_16039","price":8964.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/B03370E2-9AA7-4F5E-A366-3671D377D450.png?v=1764880320"},{"product_id":"eternal-ascent","title":"Eternal Ascent — Poise in Motion","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Ballet Wall Art | Eternal Ascent by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade black-and-white ballet artwork capturing strength, grace, and timeless movement for luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #141414;\n        --accent-color: #a8a8a8;\n        --text-primary: #e8e8e8;\n        --text-secondary: #a0a0a0;\n        --border-color: #2a2a2a;\n        --highlight-color: #d0d0d0;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--highlight-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 6rem 2rem 4rem;\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, rgba(168, 168, 168, 0.06) 0%, transparent 70%);\n        animation: gracefulPulse 6s ease-in-out infinite;\n    }\n\n    @keyframes gracefulPulse {\n        0%, 100% { \n            transform: translate(-50%, -50%) scale(1);\n            opacity: 0.3;\n        }\n        50% { \n            transform: translate(-50%, -50%) scale(1.1);\n            opacity: 0.5;\n        }\n    }\n\n    \/* Floating particles animation *\/\n    .hero::after {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background-image: \n            radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px),\n            radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);\n        background-size: 50px 50px, 80px 80px;\n        background-position: 0 0, 40px 40px;\n        animation: floatParticles 20s linear infinite;\n        pointer-events: none;\n    }\n\n    @keyframes floatParticles {\n        0% { transform: translateY(0); }\n        100% { transform: translateY(-100px); }\n    }\n\n    .hero-content {\n        text-align: center;\n        max-width: 900px;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1.2s ease;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 6vw, 5rem);\n        font-weight: 600;\n        margin-bottom: 1.5rem;\n        letter-spacing: 2px;\n        line-height: 1.2;\n        animation: titleGlow 3s ease-in-out infinite alternate;\n    }\n\n    @keyframes titleGlow {\n        from { text-shadow: 0 0 20px rgba(168, 168, 168, 0.1); }\n        to { text-shadow: 0 0 30px rgba(168, 168, 168, 0.2); }\n    }\n\n    .hero-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: clamp(1.2rem, 2.5vw, 1.8rem);\n        color: var(--text-secondary);\n        margin-bottom: 1rem;\n        font-weight: 300;\n        letter-spacing: 3px;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        border: 1px solid var(--accent-color);\n        padding: 0.75rem 2rem;\n        margin: 2rem 0;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .edition-badge:hover {\n        border-color: var(--highlight-color);\n        box-shadow: 0 0 20px rgba(168, 168, 168, 0.1);\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    .cta-button {\n        display: inline-block;\n        background: var(--accent-color);\n        color: var(--primary-bg);\n        padding: 1.2rem 3rem;\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        border: 2px solid var(--accent-color);\n        font-weight: 500;\n    }\n\n    .cta-button:hover {\n        background: transparent;\n        color: var(--highlight-color);\n        border-color: var(--highlight-color);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(168, 168, 168, 0.15);\n    }\n\n    \/* Section Styling *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2rem, 4vw, 3rem);\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: linear-gradient(to right, transparent, var(--accent-color), transparent);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--secondary-bg);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1000px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-content {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .short-description {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        line-height: 1.8;\n        color: var(--text-primary);\n        margin-bottom: 2rem;\n    }\n\n    .long-description {\n        font-size: 1.05rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: left;\n    }\n\n    .long-description p {\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        background: var(--secondary-bg);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n    }\n\n    .backstory-intro {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        font-style: italic;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n        line-height: 1.6;\n    }\n\n    .backstory-content p {\n        margin-bottom: 1.8rem;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .feature-card::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(168, 168, 168, 0.05), transparent);\n        transition: left 0.5s ease;\n    }\n\n    .feature-card:hover::before {\n        left: 100%;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-color);\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.4rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--secondary-bg);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat-item {\n        text-align: center;\n        transition: transform 0.3s ease;\n    }\n\n    .stat-item:hover {\n        transform: scale(1.05);\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        background: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        border: 1px solid var(--border-color);\n        padding: 2rem;\n        transition: all 0.4s ease;\n        position: relative;\n    }\n\n    .pairing-card::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 0;\n        width: 0;\n        height: 2px;\n        background: var(--accent-color);\n        transition: width 0.4s ease;\n    }\n\n    .pairing-card:hover::after {\n        width: 100%;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .pairing-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n        background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);\n    }\n\n    .collection-cta-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta-text {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: var(--secondary-bg);\n    }\n\n    .spaces-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid var(--border-color);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent-color);\n        color: var(--highlight-color);\n        transform: translateY(-2px);\n    }\n\n    \/* Luxury Brands Strip *\/\n    .luxury-brands {\n        padding: 4rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brands-title {\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: linear-gradient(to bottom, var(--primary-bg), var(--secondary-bg));\n    }\n\n    .final-cta-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta-subtitle {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--secondary-bg);\n        padding: 3rem 2rem;\n        border-top: 1px solid var(--border-color);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--highlight-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        font-size: 0.85rem;\n        color: var(--text-secondary);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav-links {\n            display: none;\n        }\n\n        .hero {\n            padding: 5rem 1.5rem 3rem;\n        }\n\n        section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .stats-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\n    \/* Smooth Scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Fade-in Animation *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#inquiry\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1 class=\"hero-title\"\u003eEternal Ascent\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003ePoise in Motion\u003c\/p\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\" id=\"artwork\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/y76VzN896VU\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection id=\"details\"\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp class=\"short-description\"\u003eA timeless embodiment of strength, grace, and disciplined beauty.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"long-description\"\u003e\n            \u003cp\u003eEternal Ascent captures the breath held between effort and elegance.\u003c\/p\u003e\n            \u003cp\u003eSuspended in mid-motion, the dancer rises in perfect equilibrium—muscle, bone, and intention aligned. This is not performance for applause; it is mastery for oneself. The sculptural line of the body against deep noir creates a dialogue between tension and release, discipline and freedom.\u003c\/p\u003e\n            \u003cp\u003eRendered in monochrome restraint, the composition honors classical form while speaking fluently to contemporary luxury interiors. Light grazes the figure softly, revealing strength without noise. The surrounding darkness is intentional—allowing the subject's presence to command the room without excess.\u003c\/p\u003e\n            \u003cp\u003eThis piece belongs in spaces that value precision, control, and quiet power: modern penthouses, private wellness retreats, executive lounges, luxury hotels, and museum-caliber gallery walls.\u003c\/p\u003e\n            \u003cp\u003eThis is not décor.\u003cbr\u003eIt is devotion translated into form.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp class=\"backstory-intro\"\u003ePerfection isn't loud.\u003cbr\u003eIt is practiced—again and again—until it becomes inevitable.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eEternal Ascent was born from a deep respect for the discipline required to make something appear effortless. Ballet is not about the performance—it's about the thousands of hours spent in the studio, refining a single movement until it becomes second nature.\u003c\/p\u003e\n        \u003cp\u003eThis piece honors that journey. The dancer, suspended in a moment of perfect balance, represents the culmination of dedication, sacrifice, and unwavering focus. There is no audience here. No applause. Only the quiet satisfaction of achieving what was once impossible.\u003c\/p\u003e\n        \u003cp\u003eThe monochrome palette strips away distraction, leaving only form and shadow. The darkness surrounding the figure is not emptiness—it is the space where effort transforms into grace. Where discipline becomes freedom.\u003c\/p\u003e\n        \u003cp\u003eFor collectors who understand that true luxury is not about excess, but about mastery, Eternal Ascent speaks volumes in its silence.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 50 prints will ever exist. Each piece is numbered, authenticated, and accompanied by a Certificate of Authenticity—ensuring true scarcity and collector value for discerning patrons.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure your investment retains its visual impact for over 100 years. Printed with archival pigment inks on premium cotton substrates for exceptional tonal depth and clarity.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMonochrome figurative photography maintains strong demand among collectors who value classical form, discipline, and timeless elegance. Limited editions ensure provenance and long-term value retention.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Stats Grid --\u003e\n    \u003cdiv class=\"stats-grid fade-in\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1:1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Support\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e★★★★★\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCollector Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp style=\"text-align: center; color: var(--text-secondary); max-width: 700px; margin: 0 auto 3rem;\"\u003eEternal Ascent pairs beautifully with minimalist works that share its emphasis on form, discipline, and monochrome elegance.\u003c\/p\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Balance\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA minimalist form study exploring equilibrium, negative space, and the beauty of restraint. Together, these pieces create a gallery-style installation celebrating the intersection of art and athletic grace.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eAfter the Movement\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eAn abstract charcoal composition capturing the energy that remains after motion ceases. Paired with Eternal Ascent, they form a narrative about the visible and invisible aspects of performance.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2 class=\"collection-cta-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"collection-cta-text\"\u003eEternal Ascent belongs to our Black \u0026amp; White Luxury Collection—a curated series of monochrome masterworks designed for collectors who value classical elegance, timeless form, and sophisticated restraint.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n    \u003cp style=\"text-align: center; color: var(--text-secondary); max-width: 800px; margin: 0 auto 3rem;\"\u003eEternal Ascent is curated for spaces that honor discipline, precision, and the quiet power of mastery. This piece elevates interiors where every element is chosen with intention and care.\u003c\/p\u003e\n    \u003cdiv class=\"spaces-list fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eModern Penthouses\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eWellness Retreats\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Lounges\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eLuxury Hotels\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eDance Studios\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eMuseum Galleries\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Collections\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003cp class=\"brands-title\"\u003eCurated for Luxury Hospitality\u003c\/p\u003e\n    \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003ch2 class=\"final-cta-title\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp class=\"final-cta-subtitle\"\u003eLimited Edition of 50 • Museum-Grade • Investment Ready\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eContact Kristina\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\"\u003eGallery\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Fade-in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header scroll effect\n    let lastScroll = 0;\n    const header = document.querySelector('header');\n\n    window.addEventListener('scroll', () =\u003e {\n        const currentScroll = window.pageYOffset;\n        \n        if (currentScroll \u003e 100) {\n            header.style.padding = '1rem 0';\n        } else {\n            header.style.padding = '1.5rem 0';\n        }\n        \n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46076991307941,"sku":"9131749_16039","price":10295.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/65F56CA1-09AE-42AB-9DCE-D701DC4299DD.png?v=1764807300"},{"product_id":"midnight-vice","title":"Midnight Vice — Noir Desire in Silence","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eMidnight Vice — Luxury Black \u0026amp; White Noir Fine Art Print\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A bold black-and-white artwork exploring desire, secrecy, and power for luxury interiors and collectors. Museum-grade, limited edition of 50.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #141414;\n        --accent-color: #ffffff;\n        --text-primary: #e8e8e8;\n        --text-secondary: #a0a0a0;\n        --border-color: #2a2a2a;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 6rem 2rem 4rem;\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);\n        animation: pulse 8s ease-in-out infinite;\n    }\n\n    @keyframes pulse {\n        0%, 100% { opacity: 0.3; }\n        50% { opacity: 0.6; }\n    }\n\n    .hero-content {\n        text-align: center;\n        max-width: 900px;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1.2s ease;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 6vw, 5rem);\n        font-weight: 600;\n        margin-bottom: 1.5rem;\n        letter-spacing: 2px;\n        line-height: 1.2;\n    }\n\n    .hero-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: clamp(1.2rem, 2.5vw, 1.8rem);\n        color: var(--text-secondary);\n        margin-bottom: 1rem;\n        font-weight: 300;\n        letter-spacing: 3px;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        border: 1px solid var(--accent-color);\n        padding: 0.75rem 2rem;\n        margin: 2rem 0;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    .cta-button {\n        display: inline-block;\n        background: var(--accent-color);\n        color: var(--primary-bg);\n        padding: 1.2rem 3rem;\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        border: 2px solid var(--accent-color);\n        font-weight: 500;\n    }\n\n    .cta-button:hover {\n        background: transparent;\n        color: var(--accent-color);\n        transform: translateY(-2px);\n    }\n\n    \/* Section Styling *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2rem, 4vw, 3rem);\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--secondary-bg);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1000px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-content {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .short-description {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        line-height: 1.8;\n        color: var(--text-primary);\n        margin-bottom: 2rem;\n    }\n\n    .long-description {\n        font-size: 1.05rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: left;\n    }\n\n    .long-description p {\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        background: var(--secondary-bg);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n    }\n\n    .backstory-intro {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.6rem;\n        font-style: italic;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .backstory-content p {\n        margin-bottom: 1.8rem;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.4rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--secondary-bg);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat-item {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        background: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        border: 1px solid var(--border-color);\n        padding: 2rem;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .pairing-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n        background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);\n    }\n\n    .collection-cta-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta-text {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: var(--secondary-bg);\n    }\n\n    .spaces-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid var(--border-color);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent-color);\n        color: var(--accent-color);\n    }\n\n    \/* Luxury Brands Strip *\/\n    .luxury-brands {\n        padding: 4rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brands-title {\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: linear-gradient(to bottom, var(--primary-bg), var(--secondary-bg));\n    }\n\n    .final-cta-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta-subtitle {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--secondary-bg);\n        padding: 3rem 2rem;\n        border-top: 1px solid var(--border-color);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        font-size: 0.85rem;\n        color: var(--text-secondary);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav-links {\n            display: none;\n        }\n\n        .hero {\n            padding: 5rem 1.5rem 3rem;\n        }\n\n        section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .stats-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\n    \/* Smooth Scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Fade-in Animation *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#inquiry\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1 class=\"hero-title\"\u003eMidnight Vice\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003eNoir Desire in Silence\u003c\/p\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\" id=\"artwork\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/KwvgmevpE3o\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection id=\"details\"\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp class=\"short-description\"\u003eA provocative study of indulgence, secrecy, and quiet power.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"long-description\"\u003e\n            \u003cp\u003eMidnight Vice exists in the space between confession and concealment.\u003c\/p\u003e\n            \u003cp\u003eA single element—lips suspended in darkness—becomes the entire story. Matte black surrounds a sculptural mouth holding a cigarette, frozen in the moment before exhale. There is no face. No identity. Only implication. Control. Appetite. Choice.\u003c\/p\u003e\n            \u003cp\u003eThe negative space is deliberate. Black is not absence here—it is authority. The monochrome palette heightens tension, transforming a minimal composition into an emotionally charged statement about desire, rebellion, and autonomy.\u003c\/p\u003e\n            \u003cp\u003eThis piece is curated for interiors that reject the ordinary: private penthouses, after-hours lounges, collector offices, luxury hotel suites, and bold editorial spaces. It anchors a room with confidence and speaks quietly—but unmistakably.\u003c\/p\u003e\n            \u003cp\u003eThis is not decorative art.\u003cbr\u003eThis is intent on the wall.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp class=\"backstory-intro\"\u003eNothing is louder than what isn't said.\u003cbr\u003eThis piece lives there.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eIn a world saturated with noise and excess, Midnight Vice offers something far more powerful: restraint. This artwork was conceived not as decoration, but as a statement—a visual punctuation mark for spaces that understand the difference between luxury and ostentation.\u003c\/p\u003e\n        \u003cp\u003eThe inspiration emerged from the tension between public persona and private indulgence. What we choose to reveal. What we keep concealed. The cigarette becomes metaphor—for vice, for choice, for the quiet rebellion that happens behind closed doors. The stark black-and-white palette strips away distraction, leaving only essence.\u003c\/p\u003e\n        \u003cp\u003eThis piece challenges the viewer to confront their own relationship with desire, control, and the masks we wear. It doesn't shout. It doesn't explain. It simply is—confident in its own authority, unapologetic in its presentation.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 50 prints will ever exist. Each piece is numbered, authenticated, and accompanied by a Certificate of Authenticity—ensuring true scarcity and collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure your investment retains its visual impact for over 100 years. Printed with archival pigment inks on premium cotton substrates for exceptional tonal depth.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eNoir minimalist photography maintains strong demand among collectors who value restraint, power, and bold expression. Limited editions ensure provenance and long-term value retention.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Stats Grid --\u003e\n    \u003cdiv class=\"stats-grid fade-in\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1:1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Support\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e★★★★★\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCollector Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp style=\"text-align: center; color: var(--text-secondary); max-width: 700px; margin: 0 auto 3rem;\"\u003eMidnight Vice pairs beautifully with other bold, minimalist works that share its noir sensibility and atmospheric restraint.\u003c\/p\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Femme\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA monochrome power portrait that explores identity, presence, and the strength found in silence. Together, these pieces create a narrative of quiet rebellion and controlled intensity.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eAfter Dark\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA black-on-black minimal abstract that plays with shadow, texture, and depth. Paired with Midnight Vice, they form a cohesive study in restraint and atmospheric mood.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2 class=\"collection-cta-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"collection-cta-text\"\u003eMidnight Vice belongs to our Black \u0026amp; White Luxury Collection—a curated series of noir abstracts, moody portraits, and cinematic studies designed for collectors who value bold expression and timeless elegance.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n    \u003cp style=\"text-align: center; color: var(--text-secondary); max-width: 800px; margin: 0 auto 3rem;\"\u003eMidnight Vice is curated for discerning collectors and luxury spaces that understand the power of restraint. This piece commands attention in environments where mood is intentional and every detail matters.\u003c\/p\u003e\n    \u003cdiv class=\"spaces-list fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eLuxury Galleries\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Penthouses\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoutique Hotels\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Offices\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eAfter-Hours Lounges\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eCollector Residences\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eEditorial Spaces\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003cp class=\"brands-title\"\u003eCurated for Luxury Hospitality\u003c\/p\u003e\n    \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003ch2 class=\"final-cta-title\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp class=\"final-cta-subtitle\"\u003eLimited Edition of 50 • Museum-Grade • Investment Ready\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eContact Kristina\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\"\u003eGallery\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Fade-in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header scroll effect\n    let lastScroll = 0;\n    const header = document.querySelector('header');\n\n    window.addEventListener('scroll', () =\u003e {\n        const currentScroll = window.pageYOffset;\n        \n        if (currentScroll \u003e 100) {\n            header.style.padding = '1rem 0';\n        } else {\n            header.style.padding = '1.5rem 0';\n        }\n        \n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46076992651429,"sku":"1306416_16039","price":439.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ED482780-619F-40B0-B2BB-CB5BA061D220.png?v=1764805492"},{"product_id":"elan-suspendu","title":"Élan Suspendu — Study in Poise \u0026 Ascension","description":"\u003cbody\u003e\n\n\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Ballet Wall Art | Élan Suspendu by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A refined monochrome ballet artwork for luxury homes, galleries, wellness spaces, and boutique hotels. Museum-grade limited edition.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --accent-color: #c0c0c0;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --border-color: rgba(192, 192, 192, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    h1, h2, h3 {\n        font-family: 'Playfair Display', serif;\n        font-weight: 400;\n        letter-spacing: 0.5px;\n    }\n\n    .serif-accent {\n        font-family: 'Cormorant Garamond', serif;\n        font-weight: 300;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 400;\n        letter-spacing: 2px;\n        color: var(--accent-color);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        position: relative;\n        overflow: hidden;\n        padding-top: 80px;\n    }\n\n    .hero-background {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.08) 0%, rgba(10, 10, 10, 1) 70%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n\n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.5; }\n        50% { opacity: 0.8; }\n    }\n\n    \/* Graceful floating elements - like ballet movements *\/\n    .grace-animation {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        pointer-events: none;\n    }\n\n    .floating-element {\n        position: absolute;\n        width: 3px;\n        height: 3px;\n        background: var(--accent-color);\n        border-radius: 50%;\n        opacity: 0;\n    }\n\n    .floating-element:nth-child(1) {\n        top: 20%;\n        left: 15%;\n        animation: gracefulFloat 15s ease-in-out infinite;\n    }\n\n    .floating-element:nth-child(2) {\n        top: 40%;\n        right: 20%;\n        animation: gracefulFloat 18s ease-in-out infinite 3s;\n    }\n\n    .floating-element:nth-child(3) {\n        top: 60%;\n        left: 25%;\n        animation: gracefulFloat 20s ease-in-out infinite 6s;\n    }\n\n    .floating-element:nth-child(4) {\n        top: 30%;\n        right: 30%;\n        animation: gracefulFloat 16s ease-in-out infinite 9s;\n    }\n\n    .floating-element:nth-child(5) {\n        bottom: 30%;\n        left: 35%;\n        animation: gracefulFloat 19s ease-in-out infinite 12s;\n    }\n\n    @keyframes gracefulFloat {\n        0%, 100% {\n            opacity: 0;\n            transform: translateY(0) scale(1);\n        }\n        10%, 90% {\n            opacity: 0.4;\n        }\n        50% {\n            opacity: 0.7;\n            transform: translateY(-60px) scale(1.5);\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.5s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.75rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        animation: fadeIn 2s ease-out 0.5s both;\n    }\n\n    .hero h1 {\n        font-size: 5rem;\n        margin-bottom: 0.5rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n        animation: fadeIn 2s ease-out 0.8s both;\n    }\n\n    .hero-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 2rem;\n        color: var(--accent-color);\n        font-style: italic;\n        margin-bottom: 1.5rem;\n        animation: fadeIn 2s ease-out 1s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        animation: fadeIn 2s ease-out 1.1s both;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        animation: fadeIn 2s ease-out 1.4s both;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-color);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--primary-bg);\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: rgba(192, 192, 192, 0.03);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description p {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, rgba(10, 10, 10, 1) 100%);\n        padding: 8rem 2rem;\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory p {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .backstory-highlight {\n        font-size: 2rem;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n        font-style: italic;\n    }\n\n    .backstory-verse {\n        font-size: 1.5rem;\n        line-height: 2.5;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n    }\n\n    .backstory-verse p {\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(192, 192, 192, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-card h3 {\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.6;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: rgba(192, 192, 192, 0.03);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: rgba(10, 10, 10, 0.8);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: scale(1.02);\n    }\n\n    .pairing-card h3 {\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        color: var(--accent-color);\n    }\n\n    .pairing-card p {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n        background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(10, 10, 10, 1) 100%);\n    }\n\n    .collection-cta h2 {\n        font-size: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .investment p {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.7rem 1.5rem;\n        border: 1px solid var(--border-color);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent-color);\n        color: var(--accent-color);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background: rgba(192, 192, 192, 0.03);\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip h3 {\n        text-align: center;\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n    }\n\n    .brand-logos {\n        display: flex;\n        justify-content: center;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 3rem;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--accent-color);\n    }\n\n    .brand-separator {\n        color: var(--border-color);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.1) 0%, rgba(10, 10, 10, 1) 70%);\n    }\n\n    .final-cta h2 {\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 2rem;\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    footer p {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .hero-subtitle {\n            font-size: 1.5rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .nav-links {\n            display: none;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Scroll Fade In *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 1s ease, transform 1s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-background\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"grace-animation\"\u003e\n        \u003cdiv class=\"floating-element\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"floating-element\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"floating-element\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"floating-element\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"floating-element\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003ch1\u003eÉlan Suspendu\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003eStudy in Poise \u0026amp; Ascension\u003c\/p\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20%C3%89lan%20Suspendu\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/kmIYFA544E8?si=rm1ou_M_tb5ofLkQ\" title=\"Élan Suspendu - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description fade-in\"\u003e\n    \u003cp\u003eA sculptural study of balance, grace, and disciplined freedom.\u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp\u003eThe dancer's body arcs upward in perfect equilibrium—arms lifted, spine elongated, one leg suspended in controlled ascent. This is not movement for spectacle. This is mastery through restraint.\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory fade-in\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-highlight\"\u003eÉlan Suspendu captures the precise moment where strength and surrender coexist.\u003c\/p\u003e\n        \n        \u003cp\u003eThe dancer's body arcs upward in perfect equilibrium—arms lifted, spine elongated, one leg suspended in controlled ascent. This is not movement for spectacle. This is mastery through restraint. The monochrome palette strips away distraction, allowing form, posture, and intention to command the gaze.\u003c\/p\u003e\n        \n        \u003cp\u003eRendered in soft charcoal, stone ivory, and shadowed graphite, the piece evokes classical ballet filtered through a modern lens. It feels architectural, meditative, and quietly powerful—designed for spaces where calm authority and discipline define the atmosphere.\u003c\/p\u003e\n        \n        \u003cdiv class=\"backstory-verse\"\u003e\n            \u003cp\u003eThere is a moment in every discipline\u003c\/p\u003e\n            \u003cp\u003ewhere effort vanishes—\u003c\/p\u003e\n            \u003cp\u003eand only form remains.\u003c\/p\u003e\n            \u003cp\u003eThis is that moment.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cp\u003eThis artwork belongs in curated interiors: private wellness sanctuaries, boutique hotel corridors, gallery alcoves, and minimalist residences where presence is felt before it is spoken.\u003c\/p\u003e\n        \n        \u003cp class=\"backstory-highlight\"\u003eÉlan Suspendu does not decorate a wall. It elevates it.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and certified, ensuring exclusivity and long-term collector value for refined interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003ePrinted with museum-grade archival pigment inks on premium cotton rag fine art paper to ensure exceptional tonal depth, longevity, and preservation exceeding 100 years.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eMonochrome figurative studies maintain strong demand in wellness spaces, luxury hospitality, and private collections valuing discipline and grace.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Permanence\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e3\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eFrame Options\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eObsidian Pulse\u003c\/h3\u003e\n            \u003cp\u003eMonochrome Power Abstract. Together with Élan Suspendu, they create a narrative of discipline, motion, and controlled elegance.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eSilent Balance\u003c\/h3\u003e\n            \u003cp\u003eMinimalist Figurative Study. Paired, they form an intimate dialogue about poise, restraint, and the quiet authority of perfected form.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta fade-in\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"serif-accent\"\u003eDiscover more refined pieces from the Black \u0026amp; White Luxury Collection\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cp\u003eÉlan Suspendu belongs in curated environments where calm authority and discipline define the atmosphere. Spaces where presence is felt before it is spoken.\u003c\/p\u003e\n    \n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cspan class=\"space-tag\"\u003ePrivate Wellness Sanctuaries\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eBoutique Hotel Corridors\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eGallery Alcoves\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eMinimalist Residences\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eYoga Studios\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eLuxury Spas\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003ch3\u003eTrusted by the World's Most Prestigious Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-logos\"\u003e\n        \u003cspan\u003eAman\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta fade-in\"\u003e\n    \u003ch2\u003eBegin Your Collection\u003c\/h2\u003e\n    \u003cp\u003eWhere discipline becomes grace. Make it yours.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20%C3%89lan%20Suspendu%20-%20Limited%20Edition\" class=\"cta-button\"\u003eContact the Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n        \u003cp style=\"margin-top: 1rem; font-size: 0.8rem;\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth' });\n            }\n        });\n    });\n\n    \/\/ Fade in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e observer.observe(el));\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46076994027685,"sku":"3254199_16039","price":8964.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/0C939F14-8390-48D0-A2E0-555E355E5438.png?v=1764800392"},{"product_id":"obsidian-pulse","title":"Obsidian Pulse — Monochrome Power Abstract","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Black \u0026amp; White Abstract Art | Obsidian Pulse by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A powerful monochrome abstract artwork designed for luxury interiors, penthouses, boutique hotels, and executive spaces. Museum-grade limited edition.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --accent-color: #c0c0c0;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --border-color: rgba(192, 192, 192, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    h1, h2, h3 {\n        font-family: 'Playfair Display', serif;\n        font-weight: 400;\n        letter-spacing: 0.5px;\n    }\n\n    .serif-accent {\n        font-family: 'Cormorant Garamond', serif;\n        font-weight: 300;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 400;\n        letter-spacing: 2px;\n        color: var(--accent-color);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        position: relative;\n        overflow: hidden;\n        padding-top: 80px;\n    }\n\n    .hero-background {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.08) 0%, rgba(10, 10, 10, 1) 70%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n\n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.4; }\n        50% { opacity: 0.7; }\n    }\n\n    \/* Dynamic brushstroke animations *\/\n    .stroke-animation {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        pointer-events: none;\n    }\n\n    .brush-stroke {\n        position: absolute;\n        background: linear-gradient(135deg, transparent, rgba(192, 192, 192, 0.15), transparent);\n        opacity: 0;\n        transform-origin: center;\n    }\n\n    .brush-stroke:nth-child(1) {\n        width: 3px;\n        height: 200px;\n        top: 10%;\n        left: 15%;\n        animation: strokeSlash 8s ease-in-out infinite;\n    }\n\n    .brush-stroke:nth-child(2) {\n        width: 4px;\n        height: 250px;\n        top: 30%;\n        right: 20%;\n        animation: strokeSlash 10s ease-in-out infinite 2s;\n    }\n\n    .brush-stroke:nth-child(3) {\n        width: 3px;\n        height: 180px;\n        bottom: 20%;\n        left: 25%;\n        animation: strokeSlash 12s ease-in-out infinite 4s;\n    }\n\n    .brush-stroke:nth-child(4) {\n        width: 5px;\n        height: 220px;\n        top: 50%;\n        right: 15%;\n        animation: strokeSlash 9s ease-in-out infinite 6s;\n    }\n\n    @keyframes strokeSlash {\n        0%, 100% {\n            opacity: 0;\n            transform: translateY(0) rotate(0deg) scaleY(0);\n        }\n        10% {\n            opacity: 0.4;\n            transform: translateY(-20px) rotate(45deg) scaleY(1);\n        }\n        50% {\n            opacity: 0.6;\n            transform: translateY(-30px) rotate(50deg) scaleY(1.1);\n        }\n        90% {\n            opacity: 0.3;\n            transform: translateY(-40px) rotate(55deg) scaleY(0.9);\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.5s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.75rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        animation: fadeIn 2s ease-out 0.5s both;\n    }\n\n    .hero h1 {\n        font-size: 5rem;\n        margin-bottom: 0.5rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n        animation: fadeIn 2s ease-out 0.8s both;\n    }\n\n    .hero-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 2rem;\n        color: var(--accent-color);\n        font-style: italic;\n        margin-bottom: 1.5rem;\n        animation: fadeIn 2s ease-out 1s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        animation: fadeIn 2s ease-out 1.1s both;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        animation: fadeIn 2s ease-out 1.4s both;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-color);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--primary-bg);\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: rgba(192, 192, 192, 0.03);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description p {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, rgba(10, 10, 10, 1) 100%);\n        padding: 8rem 2rem;\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory p {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .backstory-highlight {\n        font-size: 2rem;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n        font-style: italic;\n    }\n\n    .backstory-verse {\n        font-size: 1.5rem;\n        line-height: 2.5;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n    }\n\n    .backstory-verse p {\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(192, 192, 192, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-card h3 {\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.6;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: rgba(192, 192, 192, 0.03);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: rgba(10, 10, 10, 0.8);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: scale(1.02);\n    }\n\n    .pairing-card h3 {\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        color: var(--accent-color);\n    }\n\n    .pairing-card p {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n        background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(10, 10, 10, 1) 100%);\n    }\n\n    .collection-cta h2 {\n        font-size: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .investment p {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.7rem 1.5rem;\n        border: 1px solid var(--border-color);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent-color);\n        color: var(--accent-color);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background: rgba(192, 192, 192, 0.03);\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip h3 {\n        text-align: center;\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n    }\n\n    .brand-logos {\n        display: flex;\n        justify-content: center;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 3rem;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--accent-color);\n    }\n\n    .brand-separator {\n        color: var(--border-color);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.1) 0%, rgba(10, 10, 10, 1) 70%);\n    }\n\n    .final-cta h2 {\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 2rem;\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    footer p {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .hero-subtitle {\n            font-size: 1.5rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .nav-links {\n            display: none;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Scroll Fade In *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 1s ease, transform 1s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-background\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"stroke-animation\"\u003e\n        \u003cdiv class=\"brush-stroke\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"brush-stroke\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"brush-stroke\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"brush-stroke\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003ch1\u003eObsidian Pulse\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003eMonochrome Power Abstract\u003c\/p\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Obsidian%20Pulse\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/n_BbNf3Uzy0?si=p1mCtL4MvPIlHyFf\" title=\"Obsidian Pulse - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description fade-in\"\u003e\n    \u003cp\u003eA raw, architectural abstraction where motion, tension, and restraint collide.\u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp\u003eBold charcoal arcs, fractured geometry, and gestural strokes that feel both deliberate and instinctive. The contrast between soft erosion and sharp interruption evokes power under control: a visual heartbeat restrained by design.\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory fade-in\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-highlight\"\u003eObsidian Pulse is not meant to comfort. It is meant to anchor.\u003c\/p\u003e\n        \n        \u003cp\u003eThis monochrome abstract commands space through force and balance—bold charcoal arcs, fractured geometry, and gestural strokes that feel both deliberate and instinctive. The contrast between soft erosion and sharp interruption evokes power under control: a visual heartbeat restrained by design.\u003c\/p\u003e\n        \n        \u003cp\u003eRendered in deep black, stone ivory, and textured graphite, the composition feels architectural and emotional at once. It belongs in spaces where clarity, authority, and quiet dominance matter—executive lounges, penthouse living rooms, boutique hotel libraries, gallery stairwells.\u003c\/p\u003e\n        \n        \u003cdiv class=\"backstory-verse\"\u003e\n            \u003cp\u003eMovement without chaos.\u003c\/p\u003e\n            \u003cp\u003eForce without noise.\u003c\/p\u003e\n            \u003cp\u003eThis is restraint made visible.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cp class=\"backstory-highlight\"\u003eThis piece does not follow trends. It establishes presence.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and certified, ensuring architectural-level exclusivity and long-term collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003ePrinted using museum-grade archival pigment inks on premium cotton rag paper to preserve tonal depth, texture, and longevity exceeding 100 years.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eMonochrome abstractions maintain exceptional demand in executive and hospitality environments. Power and restraint that transcends trends.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Permanence\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e3\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eFrame Options\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eSilent Grid\u003c\/h3\u003e\n            \u003cp\u003eMinimalist Noir Abstract. Together with Obsidian Pulse, they form a gallery wall rooted in structure, power, and architectural restraint.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eGilded Horizon\u003c\/h3\u003e\n            \u003cp\u003eBlack \u0026amp; Gold Balance Series. Paired, they create a sophisticated dialogue about force under control and the authority of intentional design.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta fade-in\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"serif-accent\"\u003eDiscover more powerful pieces from the Abstract Atmospheric Collection\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/abstract-atmospheric-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cp\u003eObsidian Pulse commands space through force and balance. This piece belongs in environments where clarity, authority, and quiet dominance matter—spaces that establish presence, not follow trends.\u003c\/p\u003e\n    \n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cspan class=\"space-tag\"\u003eExecutive Lounges\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePenthouse Living Rooms\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eBoutique Hotel Libraries\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eGallery Stairwells\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eCorporate Boardrooms\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eArchitectural Foyers\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003ch3\u003eTrusted by the World's Most Prestigious Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-logos\"\u003e\n        \u003cspan\u003eAman\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta fade-in\"\u003e\n    \u003ch2\u003eBegin Your Collection\u003c\/h2\u003e\n    \u003cp\u003eStrength doesn't shout. Make it yours.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Obsidian%20Pulse%20-%20Limited%20Edition\" class=\"cta-button\"\u003eContact the Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n        \u003cp style=\"margin-top: 1rem; font-size: 0.8rem;\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth' });\n            }\n        });\n    });\n\n    \/\/ Fade in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e observer.observe(el));\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46076994191525,"sku":"8431439_16039","price":10764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/29DC46D6-A19D-47E7-80B1-21B84FCF1DCD.png?v=1764799613"},{"product_id":"maison-noir-reverie","title":"Maison Noir Reverie — Couture Silence","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eMaison Noir Reverie — Couture-Inspired Luxury Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A couture-inspired noir artwork for luxury interiors, boutique hotels, and high-end collectors seeking timeless sophistication. Museum-grade limited edition.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --accent-color: #d4af7a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --border-color: rgba(212, 175, 122, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    h1, h2, h3 {\n        font-family: 'Playfair Display', serif;\n        font-weight: 400;\n        letter-spacing: 0.5px;\n    }\n\n    .serif-accent {\n        font-family: 'Cormorant Garamond', serif;\n        font-weight: 300;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 400;\n        letter-spacing: 2px;\n        color: var(--accent-color);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        position: relative;\n        overflow: hidden;\n        padding-top: 80px;\n    }\n\n    .hero-background {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(ellipse at center, rgba(212, 175, 122, 0.08) 0%, rgba(10, 10, 10, 1) 70%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n\n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.4; }\n        50% { opacity: 0.7; }\n    }\n\n    \/* Couture animation - elegant fabric shimmer *\/\n    .couture-animation {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        pointer-events: none;\n    }\n\n    .silk-shimmer {\n        position: absolute;\n        width: 1px;\n        height: 100%;\n        background: linear-gradient(180deg, \n            transparent 0%, \n            rgba(212, 175, 122, 0.15) 50%, \n            transparent 100%);\n        opacity: 0;\n        animation: silkWave 12s ease-in-out infinite;\n    }\n\n    .silk-shimmer:nth-child(1) { left: 10%; animation-delay: 0s; }\n    .silk-shimmer:nth-child(2) { left: 30%; animation-delay: 3s; }\n    .silk-shimmer:nth-child(3) { left: 50%; animation-delay: 6s; }\n    .silk-shimmer:nth-child(4) { left: 70%; animation-delay: 9s; }\n    .silk-shimmer:nth-child(5) { left: 90%; animation-delay: 2s; }\n\n    @keyframes silkWave {\n        0%, 100% { opacity: 0; transform: translateY(0) scaleY(1); }\n        50% { opacity: 0.4; transform: translateY(-20px) scaleY(1.1); }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.5s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.75rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        animation: fadeIn 2s ease-out 0.5s both;\n    }\n\n    .hero h1 {\n        font-size: 5rem;\n        margin-bottom: 0.5rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n        animation: fadeIn 2s ease-out 0.8s both;\n    }\n\n    .hero-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 2rem;\n        color: var(--accent-color);\n        font-style: italic;\n        margin-bottom: 1.5rem;\n        animation: fadeIn 2s ease-out 1s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        animation: fadeIn 2s ease-out 1.1s both;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        animation: fadeIn 2s ease-out 1.4s both;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-color);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--primary-bg);\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: rgba(212, 175, 122, 0.03);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description p {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: linear-gradient(135deg, rgba(212, 175, 122, 0.05) 0%, rgba(10, 10, 10, 1) 100%);\n        padding: 8rem 2rem;\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory p {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .backstory-highlight {\n        font-size: 2rem;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n        font-style: italic;\n    }\n\n    .backstory-verse {\n        font-size: 1.5rem;\n        line-height: 2.5;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n        font-style: italic;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(212, 175, 122, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-card h3 {\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.6;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: rgba(212, 175, 122, 0.03);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: rgba(10, 10, 10, 0.8);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: scale(1.02);\n    }\n\n    .pairing-card h3 {\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        color: var(--accent-color);\n    }\n\n    .pairing-card p {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n        background: linear-gradient(135deg, rgba(212, 175, 122, 0.08) 0%, rgba(10, 10, 10, 1) 100%);\n    }\n\n    .collection-cta h2 {\n        font-size: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .investment p {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.7rem 1.5rem;\n        border: 1px solid var(--border-color);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent-color);\n        color: var(--accent-color);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background: rgba(212, 175, 122, 0.03);\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip h3 {\n        text-align: center;\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n    }\n\n    .brand-logos {\n        display: flex;\n        justify-content: center;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 3rem;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--accent-color);\n    }\n\n    .brand-separator {\n        color: var(--border-color);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: radial-gradient(ellipse at center, rgba(212, 175, 122, 0.1) 0%, rgba(10, 10, 10, 1) 70%);\n    }\n\n    .final-cta h2 {\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 2rem;\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    footer p {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .hero-subtitle {\n            font-size: 1.5rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .nav-links {\n            display: none;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Scroll Fade In *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 1s ease, transform 1s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-background\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"couture-animation\"\u003e\n        \u003cdiv class=\"silk-shimmer\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"silk-shimmer\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"silk-shimmer\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"silk-shimmer\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"silk-shimmer\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003ch1\u003eMaison Noir Reverie\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003eCouture Silence\u003c\/p\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Maison%20Noir%20Reverie\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/BsvFRV74R6A\" title=\"Maison Noir Reverie - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description fade-in\"\u003e\n    \u003cp\u003eAn icon of restraint, fashion, and feminine intelligence—rendered in noir.\u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp\u003eMaison Noir Reverie captures the poise of a woman who does not perform—she knows. Cloaked in sculptural black, crowned by a wide-brim hat that conceals more than it reveals, she becomes an emblem of timeless sophistication and cultivated power.\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory fade-in\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-highlight\"\u003eSilence can be couture.\u003c\/p\u003e\n        \n        \u003cp\u003eMaison Noir Reverie captures the poise of a woman who does not perform—she knows. Cloaked in sculptural black, crowned by a wide-brim hat that conceals more than it reveals, she becomes an emblem of timeless sophistication and cultivated power.\u003c\/p\u003e\n        \n        \u003cp\u003eThe composition is deliberately restrained: monochrome tones, architectural stillness, and a fashion-editorial posture that calls to mind Parisian ateliers, private salons, and grand hôtel suites after dusk. Every line is intention. Every shadow is confidence.\u003c\/p\u003e\n        \n        \u003cp\u003eThis work belongs in spaces where luxury whispers—executive penthouses, five-star residences, luxury cruise suites, boutique hotel lounges, and private collector galleries. It elevates interiors without asking permission.\u003c\/p\u003e\n        \n        \u003cdiv class=\"backstory-verse\"\u003e\n            \u003cp\u003eShe does not speak first.\u003c\/p\u003e\n            \u003cp\u003eThe room listens anyway.\u003c\/p\u003e\n            \u003cp\u003eA passing glance.\u003c\/p\u003e\n            \u003cp\u003eA gloved hand.\u003c\/p\u003e\n            \u003cp\u003eA quiet reign.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cp class=\"backstory-highlight\"\u003eA piece for collectors who recognize that presence is louder than display.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and certified, ensuring exclusivity and investment-grade collector value for discerning collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eCrafted using acid-free, museum-grade materials rated for 100+ years of permanence. Printed with archival pigment inks on fine-art cotton paper for exceptional longevity and tonal depth.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eCouture-inspired noir portraits maintain strong demand in luxury hospitality and private collections. Timeless aesthetic that transcends fleeting design trends.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Permanence\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e3\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eFrame Options\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eEternal Silhouette\u003c\/h3\u003e\n            \u003cp\u003eArchitectural noir femininity. Together with Maison Noir Reverie, they form a collector-grade narrative of modern elegance and quiet power.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eVeiled Authority\u003c\/h3\u003e\n            \u003cp\u003eMinimal power portrait. Paired, they create a sophisticated dialogue about presence, restraint, and the eloquence of silence in luxury spaces.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta fade-in\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"serif-accent\"\u003eDiscover more timeless pieces from the Emotional Figurative Collection\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cp\u003eMaison Noir Reverie is created for environments where luxury whispers. This piece finds its home in spaces that understand the power of restraint and the eloquence of cultivated presence.\u003c\/p\u003e\n    \n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cspan class=\"space-tag\"\u003eExecutive Penthouses\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eFive-Star Residences\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eLuxury Cruise Suites\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eBoutique Hotel Lounges\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePrivate Collector Galleries\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eGrand Hôtel Suites\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003ch3\u003eTrusted by the World's Most Prestigious Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-logos\"\u003e\n        \u003cspan\u003eAman\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta fade-in\"\u003e\n    \u003ch2\u003eBegin Your Collection\u003c\/h2\u003e\n    \u003cp\u003eElegance never announces itself. Make it yours.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Maison%20Noir%20Reverie%20-%20Limited%20Edition\" class=\"cta-button\"\u003eContact the Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n        \u003cp style=\"margin-top: 1rem; font-size: 0.8rem;\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth' });\n            }\n        });\n    });\n\n    \/\/ Fade in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e observer.observe(el));\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46077014311077,"sku":"2518107_16039","price":9164.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46077014343845,"sku":"2518107_16045","price":9164.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46077014376613,"sku":"2518107_15700","price":9164.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/511FEF21-E4B5-485F-9C87-862CC54AFAD6.png?v=1764776869"},{"product_id":"veiled-allure","title":"Eternal Silhouette — Noir Elegance in Motion","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eVeiled Allure — Luxury Black \u0026amp; White Feminine Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A refined black and white portrait artwork created for luxury interiors, yachts, boutique hotels, and collectors. Museum-grade limited edition.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --accent-color: #d4af7a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --border-color: rgba(212, 175, 122, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    h1, h2, h3 {\n        font-family: 'Playfair Display', serif;\n        font-weight: 400;\n        letter-spacing: 0.5px;\n    }\n\n    .serif-accent {\n        font-family: 'Cormorant Garamond', serif;\n        font-weight: 300;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 400;\n        letter-spacing: 2px;\n        color: var(--accent-color);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        position: relative;\n        overflow: hidden;\n        padding-top: 80px;\n    }\n\n    .hero-background {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(ellipse at center, rgba(212, 175, 122, 0.08) 0%, rgba(10, 10, 10, 1) 70%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n\n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.4; }\n        50% { opacity: 0.7; }\n    }\n\n    .veil-animation {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        pointer-events: none;\n    }\n\n    .veil-particle {\n        position: absolute;\n        width: 2px;\n        height: 2px;\n        background: var(--accent-color);\n        border-radius: 50%;\n        opacity: 0;\n        animation: veilFloat 15s ease-in-out infinite;\n    }\n\n    .veil-particle:nth-child(1) { left: 15%; animation-delay: 0s; }\n    .veil-particle:nth-child(2) { left: 35%; animation-delay: 3s; }\n    .veil-particle:nth-child(3) { left: 55%; animation-delay: 6s; }\n    .veil-particle:nth-child(4) { left: 75%; animation-delay: 9s; }\n    .veil-particle:nth-child(5) { left: 85%; animation-delay: 12s; }\n\n    @keyframes veilFloat {\n        0% { top: 100%; opacity: 0; }\n        10% { opacity: 0.3; }\n        50% { opacity: 0.6; }\n        90% { opacity: 0.2; }\n        100% { top: -10%; opacity: 0; }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.5s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.75rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        animation: fadeIn 2s ease-out 0.5s both;\n    }\n\n    .hero h1 {\n        font-size: 5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n        animation: fadeIn 2s ease-out 0.8s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        animation: fadeIn 2s ease-out 1.1s both;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        animation: fadeIn 2s ease-out 1.4s both;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-color);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--primary-bg);\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: rgba(212, 175, 122, 0.03);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description p {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: linear-gradient(135deg, rgba(212, 175, 122, 0.05) 0%, rgba(10, 10, 10, 1) 100%);\n        padding: 8rem 2rem;\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory p {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .backstory-highlight {\n        font-size: 2rem;\n        color: var(--accent-color);\n        text-align: center;\n        margin: 3rem 0;\n        font-style: italic;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(212, 175, 122, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-card h3 {\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.6;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: rgba(212, 175, 122, 0.03);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: rgba(10, 10, 10, 0.8);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: scale(1.02);\n    }\n\n    .pairing-card h3 {\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        color: var(--accent-color);\n    }\n\n    .pairing-card p {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n        background: linear-gradient(135deg, rgba(212, 175, 122, 0.08) 0%, rgba(10, 10, 10, 1) 100%);\n    }\n\n    .collection-cta h2 {\n        font-size: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .investment p {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.7rem 1.5rem;\n        border: 1px solid var(--border-color);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent-color);\n        color: var(--accent-color);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background: rgba(212, 175, 122, 0.03);\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip h3 {\n        text-align: center;\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n    }\n\n    .brand-logos {\n        display: flex;\n        justify-content: center;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 3rem;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--accent-color);\n    }\n\n    .brand-separator {\n        color: var(--border-color);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: radial-gradient(ellipse at center, rgba(212, 175, 122, 0.1) 0%, rgba(10, 10, 10, 1) 70%);\n    }\n\n    .final-cta h2 {\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 2rem;\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    footer p {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .nav-links {\n            display: none;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Scroll Fade In *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 1s ease, transform 1s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-background\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"veil-animation\"\u003e\n        \u003cdiv class=\"veil-particle\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"veil-particle\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"veil-particle\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"veil-particle\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"veil-particle\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003ch1\u003eVeiled Allure\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Veiled%20Allure\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/vENBRPL-Ke0?si=RXA2bbMhUJ-A-8tB\" title=\"Veiled Allure - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description fade-in\"\u003e\n    \u003cp\u003eSeduction through restraint. A portrait of quiet power and timeless femininity.\u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp\u003eAn homage to classic noir glamour—where mystery is currency and elegance is armor. Rendered in rich monochrome, the sweeping brim of the hat obscures the eyes, directing attention to gesture, posture, and intention.\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory fade-in\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-highlight\"\u003eSome women command a room without ever revealing their face.\u003c\/p\u003e\n        \n        \u003cp\u003eVeiled Allure is an homage to classic noir glamour—where mystery is currency and elegance is armor. Rendered in rich monochrome, the sweeping brim of the hat obscures the eyes, directing attention to gesture, posture, and intention.\u003c\/p\u003e\n        \n        \u003cp\u003eThe sculptural black silhouette contrasts against soft light, creating tension between concealment and confidence.\u003c\/p\u003e\n        \n        \u003cp\u003eThis piece evokes Old Hollywood, Riviera nights, and private moments aboard superyachts and luxury hotel suites. It speaks to the collector who understands that power need not announce itself.\u003c\/p\u003e\n        \n        \u003cp\u003eDesigned for refined interiors—boutique hotel lounges, penthouse salons, private yachts, and executive residences—Veiled Allure is not an image.\u003c\/p\u003e\n        \n        \u003cp class=\"backstory-highlight\"\u003eIt is a presence.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and certified, ensuring exclusivity and long-term collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade materials ensure 100+ years of permanence. Printed with acid-free archival pigment inks on premium fine art paper for exceptional longevity and tonal depth.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eClassic noir portraits maintain strong demand in luxury hospitality and private collections. Timeless aesthetic that transcends trends.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Permanence\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1:1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Consultation\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eCrimson Whisper\u003c\/h3\u003e\n            \u003cp\u003eBlack \u0026amp; white portrait with red accent. Together with Veiled Allure, they explore the language of restraint and selective revelation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eMidnight Poise\u003c\/h3\u003e\n            \u003cp\u003eMinimalist feminine silhouette. Paired, they form a collector's trio rooted in mystery, control, and elegant power.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta fade-in\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"serif-accent\"\u003eDiscover more timeless pieces from the Black \u0026amp; White Luxury Collection\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cp\u003eVeiled Allure is created for environments where silence is intentional and mood is curated with precision. This piece finds its home in spaces that understand the power of restraint.\u003c\/p\u003e\n    \n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cspan class=\"space-tag\"\u003eBoutique Hotel Lounges\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePenthouse Salons\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePrivate Yachts\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eExecutive Residences\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eLuxury Galleries\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eSt. Regis Suites\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003ch3\u003eTrusted by the World's Most Prestigious Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-logos\"\u003e\n        \u003cspan\u003eAman\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta fade-in\"\u003e\n    \u003ch2\u003eBegin Your Collection\u003c\/h2\u003e\n    \u003cp\u003eMystery is her signature. Make it yours.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Veiled%20Allure%20-%20Limited%20Edition\" class=\"cta-button\"\u003eContact the Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n        \u003cp style=\"margin-top: 1rem; font-size: 0.8rem;\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth' });\n            }\n        });\n    });\n\n    \/\/ Fade in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e observer.observe(el));\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46077016703141,"sku":"3667961_16039","price":8274.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46077016735909,"sku":"3667961_16045","price":8274.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46077016768677,"sku":"3667961_15700","price":8274.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/103BD373-B144-4B0B-A729-A7D3066AF7EB.png?v=1764775768"},{"product_id":"framed-canvas-17","title":"Veiled Allure — Noir Elegance in Black \u0026 White","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eVeiled Allure | Luxury Black \u0026amp; White Feminine Wall Art\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A refined black and white portrait artwork created for luxury interiors, yachts, boutique hotels, and collectors. Museum-grade limited edition fine art.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700;800;900\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #141414;\n        --accent-ivory: #e8dfd0;\n        --soft-shadow: #3a3a3a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --border-color: #2a2a2a;\n    }\n\n    body {\n        font-family: 'Cormorant Garamond', serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 700;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 1rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-ivory);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1614 100%);\n    }\n\n    .hero-content {\n        text-align: center;\n        z-index: 2;\n        max-width: 900px;\n        padding: 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-ivory);\n        color: var(--accent-ivory);\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1.5s ease-out;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: 5.5rem;\n        font-weight: 400;\n        color: var(--accent-ivory);\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        text-shadow: 2px 2px 30px rgba(232, 223, 208, 0.3);\n        letter-spacing: 5px;\n    }\n\n    .hero-tagline {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 3px;\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n\n    .hero-description {\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        line-height: 1.8;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-ivory);\n        color: var(--accent-ivory);\n        text-decoration: none;\n        font-size: 1.1rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        cursor: pointer;\n        font-family: 'Montserrat', sans-serif;\n        font-weight: 500;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-ivory);\n        color: var(--primary-bg);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(232, 223, 208, 0.3);\n    }\n\n    \/* Noir shadow animations *\/\n    .shadow-veil {\n        position: absolute;\n        width: 100%;\n        height: 100%;\n        pointer-events: none;\n    }\n\n    .shadow-sweep {\n        position: absolute;\n        width: 200%;\n        height: 2px;\n        background: linear-gradient(90deg, transparent, var(--accent-ivory), transparent);\n        opacity: 0.1;\n        animation: shadowSweep 15s linear infinite;\n    }\n\n    .shadow-sweep:nth-child(1) { top: 20%; animation-delay: 0s; }\n    .shadow-sweep:nth-child(2) { top: 40%; animation-delay: 5s; }\n    .shadow-sweep:nth-child(3) { top: 60%; animation-delay: 10s; }\n    .shadow-sweep:nth-child(4) { top: 80%; animation-delay: 7s; }\n\n    \/* Spotlight effect *\/\n    .spotlight {\n        position: absolute;\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, rgba(232, 223, 208, 0.08), transparent 70%);\n        border-radius: 50%;\n        animation: spotlightMove 20s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    .spotlight:nth-child(1) { \n        top: -10%; \n        right: 10%; \n        animation-delay: 0s; \n    }\n    \n    .spotlight:nth-child(2) { \n        bottom: -10%; \n        left: 10%; \n        animation-delay: 10s; \n    }\n\n    @keyframes shadowSweep {\n        0% { \n            transform: translateX(-100%);\n            opacity: 0;\n        }\n        50% { \n            opacity: 0.15;\n        }\n        100% { \n            transform: translateX(100%);\n            opacity: 0;\n        }\n    }\n\n    @keyframes spotlightMove {\n        0%, 100% { \n            transform: translate(0, 0) scale(1);\n            opacity: 0.4;\n        }\n        50% { \n            transform: translate(50px, -50px) scale(1.1);\n            opacity: 0.6;\n        }\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 3rem;\n        text-align: center;\n        color: var(--accent-ivory);\n        font-weight: 400;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: linear-gradient(90deg, transparent, var(--accent-ivory), transparent);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background-color: var(--secondary-bg);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1000px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-text {\n        font-size: 1.3rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        max-width: 800px;\n        margin: 0 auto 2rem;\n        text-align: center;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory-content p {\n        font-size: 1.25rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: left;\n    }\n\n    .backstory-content p:first-of-type {\n        font-size: 1.4rem;\n        color: var(--accent-ivory);\n        font-style: italic;\n    }\n\n    .backstory-closing {\n        margin-top: 3rem;\n        text-align: center;\n        font-size: 1.5rem;\n        color: var(--text-primary);\n        font-weight: 400;\n        line-height: 1.8;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        background: rgba(20, 20, 20, 0.5);\n        transition: all 0.3s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-ivory);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(232, 223, 208, 0.15);\n    }\n\n    .feature-icon {\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-ivory);\n    }\n\n    .feature-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 500;\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1.1rem;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--secondary-bg);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 1.5rem;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-ivory);\n        font-weight: 400;\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        color: var(--text-secondary);\n        font-size: 1rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        background: var(--secondary-bg);\n        transition: all 0.3s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-ivory);\n        transform: translateY(-5px);\n    }\n\n    .pairing-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        color: var(--accent-ivory);\n        margin-bottom: 1rem;\n        font-weight: 500;\n    }\n\n    .pairing-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1.1rem;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);\n        text-align: center;\n    }\n\n    .target-spaces {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-top: 2rem;\n        line-height: 2;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brand-strip h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n        font-weight: 400;\n    }\n\n    .luxury-brands {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 1.5rem;\n        color: var(--accent-ivory);\n        letter-spacing: 3px;\n        font-weight: 300;\n    }\n\n    .luxury-brands span {\n        display: inline-block;\n        margin: 0 1.5rem;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: var(--primary-bg);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .final-cta p {\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 2rem;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        font-size: 1.5rem;\n        transition: color 0.3s ease;\n        text-decoration: none;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-ivory);\n    }\n\n    .footer-text {\n        color: var(--text-secondary);\n        font-size: 1rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav-links {\n            display: none;\n        }\n\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .hero-tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .luxury-brands span {\n            display: block;\n            margin: 1rem 0;\n        }\n\n        .edition-stats {\n            grid-template-columns: 1fr;\n        }\n    }\n\n    \/* Smooth scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Parallax effect *\/\n    .parallax {\n        transform: translateZ(0);\n        will-change: transform;\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCOLLECTIONS\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eINQUIRE\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"spotlight\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"spotlight\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"shadow-veil\"\u003e\n        \u003cdiv class=\"shadow-sweep\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"shadow-sweep\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"shadow-sweep\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"shadow-sweep\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003eVEILED ALLURE\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003cp class=\"hero-description\"\u003eSeduction through restraint. A portrait of quiet power and timeless femininity.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExperience the Mystery\u003c\/h2\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/vENBRPL-Ke0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection\u003e\n    \u003cp class=\"description-text\"\u003e\n        An homage to classic noir glamour—where mystery is currency and elegance is armor. The sweeping brim obscures, the gesture commands, and presence becomes power.\n    \u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Story Behind the Art\u003c\/h2\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp\u003eSome women command a room without ever revealing their face.\u003c\/p\u003e\n        \n        \u003cp\u003eVeiled Allure is an homage to classic noir glamour—where mystery is currency and elegance is armor. Rendered in rich monochrome, the sweeping brim of the hat obscures the eyes, directing attention to gesture, posture, and intention. The sculptural black silhouette contrasts against soft light, creating tension between concealment and confidence.\u003c\/p\u003e\n        \n        \u003cp\u003eThis piece evokes Old Hollywood, Riviera nights, and private moments aboard superyachts and luxury hotel suites. It speaks to the collector who understands that power need not announce itself.\u003c\/p\u003e\n        \n        \u003cp\u003eDesigned for refined interiors—boutique hotel lounges, penthouse salons, private yachts, and executive residences—Veiled Allure is not an image.\u003c\/p\u003e\n        \n        \u003cdiv class=\"backstory-closing\"\u003e\n            It is a presence.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Features\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e✦\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and certified, ensuring lasting exclusivity and collector value for contemporary noir portraiture.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade pigment inks on premium fine art paper ensure exceptional tonal depth, rich blacks, and 100+ year permanence—gallery-ready elegance that endures.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◈\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eContemporary noir portraiture maintains strong collector demand, particularly pieces that capture timeless femininity and mystery with cinematic sophistication.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEDITION SIZE\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYEAR LONGEVITY\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRELEASE YEAR\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCERTIFIED AUTHENTIC\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eCrimson Whisper\u003c\/h3\u003e\n            \u003cp\u003eBlack and white portrait with a single red accent—together they create a powerful dialogue of restraint and passion, perfect for collector walls.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eMidnight Poise\u003c\/h3\u003e\n            \u003cp\u003eMinimalist feminine silhouette exploring elegance through shadow—these works form a collector's trio rooted in mystery, control, and timeless sophistication.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 3rem;\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eEXPLORE COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n    \u003cp class=\"target-spaces\"\u003e\n        Boutique Hotel Lounges • Penthouse Salons • Private Yachts • Executive Residences\u003cbr\u003e\n        Luxury Gallery Walls • Corporate Executive Suites • High-End Spas • Collector Interiors\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003cdiv class=\"brand-strip\"\u003e\n    \u003cdiv class=\"brand-strip-content\"\u003e\n        \u003ch3\u003eTRUSTED BY PRESTIGIOUS HOSPITALITY BRANDS\u003c\/h3\u003e\n        \u003cdiv class=\"luxury-brands\"\u003e\n            \u003cspan\u003eAman\u003c\/span\u003e\n            \u003cspan\u003e•\u003c\/span\u003e\n            \u003cspan\u003eFour Seasons\u003c\/span\u003e\n            \u003cspan\u003e•\u003c\/span\u003e\n            \u003cspan\u003eSt. Regis\u003c\/span\u003e\n            \u003cspan\u003e•\u003c\/span\u003e\n            \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003ch2\u003eBegin Your Collection\u003c\/h2\u003e\n    \u003cp\u003eLimited to 50 editions worldwide. Inquire now to secure this portrait of quiet power and timeless femininity.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-text\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -100px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.style.opacity = '1';\n                entry.target.style.transform = 'translateY(0)';\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.feature-card, .pairing-card, .stat').forEach(el =\u003e {\n        el.style.opacity = '0';\n        el.style.transform = 'translateY(30px)';\n        el.style.transition = 'all 0.8s ease-out';\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\n    \/\/ Parallax effect for spotlights\n    window.addEventListener('scroll', () =\u003e {\n        const scrolled = window.pageYOffset;\n        const spotlights = document.querySelectorAll('.spotlight');\n        spotlights.forEach((spotlight, index) =\u003e {\n            const speed = 0.2 + (index * 0.1);\n            spotlight.style.transform = `translateY(${scrolled * speed}px)`;\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46077017129125,"sku":"9537793_16039","price":8264.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46077017161893,"sku":"9537793_16045","price":8264.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46077017194661,"sku":"9537793_15700","price":8264.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/D3DEAC84-001F-40BE-95EC-8079D36E54E6.png?v=1764774555"},{"product_id":"morning-reverie","title":"Morning Unsaid — Intimate Figurative Noir","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eMorning Unsaid | Luxury Figurative Wall Art Print\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A quiet, sensual figurative artwork exploring morning light, vulnerability, and elegant restraint. Museum-grade limited edition fine art.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700;800;900\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #141414;\n        --accent-ivory: #e8dfd0;\n        --soft-charcoal: #4a4a4a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --border-color: #2a2a2a;\n    }\n\n    body {\n        font-family: 'Cormorant Garamond', serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 700;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 1rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-ivory);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 100%);\n    }\n\n    .hero-content {\n        text-align: center;\n        z-index: 2;\n        max-width: 900px;\n        padding: 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-ivory);\n        color: var(--accent-ivory);\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1.5s ease-out;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: 5rem;\n        font-weight: 300;\n        color: var(--accent-ivory);\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        text-shadow: 2px 2px 20px rgba(232, 223, 208, 0.2);\n        letter-spacing: 3px;\n    }\n\n    .hero-tagline {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 3px;\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n\n    .hero-description {\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        line-height: 1.8;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-ivory);\n        color: var(--accent-ivory);\n        text-decoration: none;\n        font-size: 1.1rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        cursor: pointer;\n        font-family: 'Montserrat', sans-serif;\n        font-weight: 500;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-ivory);\n        color: var(--primary-bg);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(232, 223, 208, 0.3);\n    }\n\n    \/* Soft light particles animation *\/\n    .light-particle {\n        position: absolute;\n        width: 3px;\n        height: 3px;\n        background: radial-gradient(circle, var(--accent-ivory), transparent);\n        border-radius: 50%;\n        opacity: 0;\n        animation: float-gentle 12s ease-in-out infinite;\n    }\n\n    .light-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }\n    .light-particle:nth-child(2) { top: 50%; right: 20%; animation-delay: 3s; }\n    .light-particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 6s; }\n    .light-particle:nth-child(4) { top: 70%; right: 30%; animation-delay: 9s; }\n    .light-particle:nth-child(5) { top: 35%; left: 40%; animation-delay: 1.5s; }\n    .light-particle:nth-child(6) { bottom: 40%; right: 15%; animation-delay: 4.5s; }\n\n    \/* Soft glow overlay *\/\n    .glow-overlay {\n        position: absolute;\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, rgba(232, 223, 208, 0.08), transparent);\n        border-radius: 50%;\n        animation: gentle-pulse 8s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    .glow-overlay:nth-child(1) { top: -20%; left: -10%; }\n    .glow-overlay:nth-child(2) { bottom: -20%; right: -10%; animation-delay: 4s; }\n\n    @keyframes float-gentle {\n        0%, 100% { \n            opacity: 0;\n            transform: translateY(0px) scale(1);\n        }\n        25% { \n            opacity: 0.4;\n            transform: translateY(-30px) scale(1.5);\n        }\n        50% { \n            opacity: 0.7;\n            transform: translateY(-60px) scale(1);\n        }\n        75% { \n            opacity: 0.3;\n            transform: translateY(-40px) scale(1.2);\n        }\n    }\n\n    @keyframes gentle-pulse {\n        0%, 100% { \n            transform: scale(1);\n            opacity: 0.3;\n        }\n        50% { \n            transform: scale(1.2);\n            opacity: 0.5;\n        }\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 2rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 3rem;\n        text-align: center;\n        color: var(--accent-ivory);\n        font-weight: 400;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: linear-gradient(90deg, transparent, var(--accent-ivory), transparent);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background-color: var(--secondary-bg);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1000px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border-color);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-text {\n        font-size: 1.3rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        max-width: 800px;\n        margin: 0 auto 2rem;\n        text-align: center;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory-content p {\n        font-size: 1.25rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: left;\n    }\n\n    .backstory-content p:first-of-type {\n        font-size: 1.4rem;\n        color: var(--accent-ivory);\n        font-style: italic;\n    }\n\n    .backstory-closing {\n        margin-top: 3rem;\n        text-align: center;\n        font-size: 1.3rem;\n        color: var(--accent-ivory);\n        font-style: italic;\n        line-height: 1.8;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        background: rgba(20, 20, 20, 0.5);\n        transition: all 0.3s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-ivory);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(232, 223, 208, 0.15);\n    }\n\n    .feature-icon {\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-ivory);\n    }\n\n    .feature-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 500;\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1.1rem;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--secondary-bg);\n        border: 1px solid var(--border-color);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 1.5rem;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        color: var(--accent-ivory);\n        font-weight: 400;\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        color: var(--text-secondary);\n        font-size: 1rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2rem;\n        border: 1px solid var(--border-color);\n        background: var(--secondary-bg);\n        transition: all 0.3s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-ivory);\n        transform: translateY(-5px);\n    }\n\n    .pairing-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        color: var(--accent-ivory);\n        margin-bottom: 1rem;\n        font-weight: 500;\n    }\n\n    .pairing-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1.1rem;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);\n        text-align: center;\n    }\n\n    .target-spaces {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-top: 2rem;\n        line-height: 2;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brand-strip h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n        font-weight: 400;\n    }\n\n    .luxury-brands {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 1.5rem;\n        color: var(--accent-ivory);\n        letter-spacing: 3px;\n        font-weight: 300;\n    }\n\n    .luxury-brands span {\n        display: inline-block;\n        margin: 0 1.5rem;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 2rem;\n        background: var(--primary-bg);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .final-cta p {\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 2rem;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        font-size: 1.5rem;\n        transition: color 0.3s ease;\n        text-decoration: none;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-ivory);\n    }\n\n    .footer-text {\n        color: var(--text-secondary);\n        font-size: 1rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav-links {\n            display: none;\n        }\n\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .hero-tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .luxury-brands span {\n            display: block;\n            margin: 1rem 0;\n        }\n\n        .edition-stats {\n            grid-template-columns: 1fr;\n        }\n    }\n\n    \/* Smooth scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Parallax effect *\/\n    .parallax {\n        transform: translateZ(0);\n        will-change: transform;\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCOLLECTIONS\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eINQUIRE\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"glow-overlay\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"glow-overlay\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"light-particle\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"light-particle\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"light-particle\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"light-particle\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"light-particle\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"light-particle\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003eMORNING UNSAID\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003cp class=\"hero-description\"\u003eA quiet moment of freedom, vulnerability, and awakening—captured in restrained monochrome elegance.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExperience the Intimacy\u003c\/h2\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/tdatTgwRF4w\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection\u003e\n    \u003cp class=\"description-text\"\u003e\n        A cinematic study of morning light and unguarded movement—where sensuality lives in restraint, and elegance is found in what remains unsaid.\n    \u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Story Behind the Art\u003c\/h2\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp\u003eThere is a private moment that exists just before the world arrives.\u003c\/p\u003e\n        \n        \u003cp\u003eMorning light spills softly through glass. The body stretches instinctively. No performance. No audience. Only breath, skin, and silence.\u003c\/p\u003e\n        \n        \u003cp\u003eMorning Unsaid captures that moment.\u003c\/p\u003e\n        \n        \u003cp\u003eRendered in delicate monochrome with painterly restraint, this figurative work carries sensuality without spectacle—intimate, feminine, and quietly powerful. The blurred edges and minimal palette invite the viewer to feel rather than inspect, making this piece ideal for refined interiors where art is meant to be lived with, not announced.\u003c\/p\u003e\n        \n        \u003cp\u003eDesigned for luxury residences, boutique hotel corridors, private entrances, gallery stairwells, and hospitality suites, this work evokes elegance through absence—what is not shown is just as important as what is.\u003c\/p\u003e\n        \n        \u003cdiv class=\"backstory-closing\"\u003e\n            This is a study in presence.\u003cbr\u003e\n            Unposed.\u003cbr\u003e\n            Unfiltered.\u003cbr\u003e\n            Unsaid.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Features\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e✦\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and certified, ensuring lasting exclusivity and collector value for intimate figurative works.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade pigment inks on premium fine art paper ensure exceptional tonal depth and 100+ year longevity—preserving every subtle gradation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◈\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eContemporary figurative art with quiet luxury appeal maintains strong demand among collectors seeking intimate, sophisticated works with timeless elegance.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEDITION SIZE\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYEAR LONGEVITY\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRELEASE YEAR\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCERTIFIED AUTHENTIC\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eStillness After Dark\u003c\/h3\u003e\n            \u003cp\u003eIntimate seated figure exploring contemplation and quiet strength—together they create a cohesive narrative of feminine vulnerability and power.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3\u003eBare Silence\u003c\/h3\u003e\n            \u003cp\u003eMinimalist nude abstract celebrating form through restraint—these works complement each other through shared themes of elegance and unspoken beauty.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 3rem;\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eEXPLORE COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Refined Spaces\u003c\/h2\u003e\n    \u003cp class=\"target-spaces\"\u003e\n        Luxury Residences • Boutique Hotel Corridors • Private Entrances • Gallery Stairwells\u003cbr\u003e\n        Hospitality Suites • Executive Retreats • Collector Galleries • Intimate Lounges\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003cdiv class=\"brand-strip\"\u003e\n    \u003cdiv class=\"brand-strip-content\"\u003e\n        \u003ch3\u003eTRUSTED BY PRESTIGIOUS HOSPITALITY BRANDS\u003c\/h3\u003e\n        \u003cdiv class=\"luxury-brands\"\u003e\n            \u003cspan\u003eAman\u003c\/span\u003e\n            \u003cspan\u003e•\u003c\/span\u003e\n            \u003cspan\u003eFour Seasons\u003c\/span\u003e\n            \u003cspan\u003e•\u003c\/span\u003e\n            \u003cspan\u003eSt. Regis\u003c\/span\u003e\n            \u003cspan\u003e•\u003c\/span\u003e\n            \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003ch2\u003eBegin Your Collection\u003c\/h2\u003e\n    \u003cp\u003eLimited to 50 editions worldwide. Inquire now to secure this intimate study of morning light and unguarded beauty.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-text\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -100px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.style.opacity = '1';\n                entry.target.style.transform = 'translateY(0)';\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.feature-card, .pairing-card, .stat').forEach(el =\u003e {\n        el.style.opacity = '0';\n        el.style.transform = 'translateY(30px)';\n        el.style.transition = 'all 0.8s ease-out';\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\n    \/\/ Parallax effect for glow overlays\n    window.addEventListener('scroll', () =\u003e {\n        const scrolled = window.pageYOffset;\n        const glows = document.querySelectorAll('.glow-overlay');\n        glows.forEach((glow, index) =\u003e {\n            const speed = 0.3 + (index * 0.1);\n            glow.style.transform = `translateY(${scrolled * speed}px)`;\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46077020373157,"sku":"2197970_16039","price":9414.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46077020405925,"sku":"2197970_16045","price":9414.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46077020438693,"sku":"2197970_15700","price":9414.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/77541667-2626-49C3-86C4-6412DC87F684.png?v=1764772475"},{"product_id":"predator-s-gaze","title":"Predatory Silence — Black \u0026 White Leopard Gaze","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003ePredatory Silence | Luxury Leopard Wall Art by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A limited edition black and white leopard artwork symbolizing power, restraint, and authority. Museum-grade luxury art.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #111111;\n        --accent-color: #b0b0b0;\n        --accent-hover: #c8c8c8;\n        --text-primary: #ffffff;\n        --text-secondary: #a0a0a0;\n        --text-muted: #707070;\n        --divider-color: rgba(176, 176, 176, 0.3);\n        --silver-overlay: rgba(176, 176, 176, 0.03);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header Styles *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 100%;\n        background-color: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        padding: 1.5rem 5%;\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        list-style: none;\n        display: flex;\n        gap: 2.5rem;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    nav a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);\n    }\n\n    .hero-content {\n        max-width: 1200px;\n        text-align: center;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1s ease-out 0.3s both;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        letter-spacing: 3px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        animation: fadeInUp 1s ease-out 0.5s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n        animation: fadeIn 1s ease-out 0.7s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        animation: fadeInUp 1s ease-out 0.9s both;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-color);\n        color: var(--primary-bg);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(176, 176, 176, 0.2);\n    }\n\n    \/* Watchful gaze animation for predatory mood *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),\n                    radial-gradient(circle at 55% 60%, rgba(0, 0, 0, 0.5) 0%, transparent 60%);\n        animation: watchfulGaze 14s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 400;\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background-color: var(--accent-color);\n        margin: 2rem auto;\n    }\n\n    .description-text {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: justify;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .features-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        transition: all 0.4s ease;\n        background: linear-gradient(135deg, var(--silver-overlay) 0%, transparent 100%);\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(176, 176, 176, 0.15);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .stats-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n    }\n\n    .stat-card {\n        text-align: center;\n        padding: 2.5rem 1.5rem;\n        background: linear-gradient(135deg, rgba(176, 176, 176, 0.03) 0%, transparent 100%);\n        border: 1px solid rgba(176, 176, 176, 0.15);\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        max-width: 1000px;\n        margin: 3rem auto 0;\n        display: grid;\n        gap: 2rem;\n    }\n\n    .pairing-item {\n        padding: 2rem;\n        border-left: 2px solid var(--accent-color);\n        background: linear-gradient(90deg, rgba(176, 176, 176, 0.03) 0%, transparent 100%);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        font-style: italic;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        color: var(--text-secondary);\n        font-size: 1.2rem;\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin: 3rem 0;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid rgba(176, 176, 176, 0.3);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n        background: linear-gradient(135deg, var(--silver-overlay) 0%, transparent 100%);\n    }\n\n    \/* Luxury Brands *\/\n    .brands-section {\n        padding: 4rem 5%;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .brands-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brands-label {\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);\n        text-align: center;\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        color: var(--text-secondary);\n        font-size: 1.1rem;\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 5%;\n        background-color: var(--primary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        color: var(--text-muted);\n        font-size: 0.85rem;\n    }\n\n    \/* Animations *\/\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from {\n            opacity: 0;\n        }\n        to {\n            opacity: 1;\n        }\n    }\n\n    @keyframes watchfulGaze {\n        0%, 100% {\n            opacity: 0.8;\n            transform: scale(1);\n        }\n        50% {\n            opacity: 1;\n            transform: scale(1.02);\n        }\n    }\n\n    \/* Scroll reveal animation *\/\n    .reveal {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .reveal.active {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        header {\n            padding: 1rem 5%;\n        }\n\n        nav ul {\n            gap: 1.5rem;\n        }\n\n        nav a {\n            font-size: 0.8rem;\n        }\n\n        .hero {\n            padding: 6rem 5% 3rem;\n        }\n\n        .hero h1 {\n            font-size: 2.5rem;\n        }\n\n        .tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .target-spaces {\n            gap: 1rem;\n        }\n\n        .space-tag {\n            padding: 0.5rem 1rem;\n            font-size: 0.8rem;\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eINQUIRY\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003ePredatory Silence\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/5N_XyBufXxA\" title=\"Predatory Silence - Luxury Leopard Wall Art\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"about\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInstinctive Authority\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            A powerful monochrome study of instinct, elegance, and control—Predatory Silence captures strength without noise.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003ePresence Without Announcement\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Some presence is not announced.\u003cbr\u003e\n            It is felt.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Predatory Silence is an intimate, commanding portrait of the wild refined into discipline. Cropped close, stripped of distraction, the leopard's gaze becomes the entire composition—watchful, patient, sovereign. Every stroke is intentional. Every shadow carries tension.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This piece explores dominance without aggression. The eye does not chase—it waits. It understands timing, restraint, inevitability. Rendered in black and white, the absence of color heightens authority, making this work ideal for interiors that demand focus and gravitas.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Designed for spaces where power is instinctive rather than displayed: executive offices, modern penthouses, boutique hotel corridors, private studies, and curated gallery walls.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This is not animal art.\u003cbr\u003e\n            It is leadership psychology in visual form.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features-section\" id=\"features\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a certificate of authenticity, ensuring exclusivity and lasting value for collectors who appreciate symbolic power.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed using pigment-based archival inks on premium fine art substrates for exceptional tonal depth and dramatic presence.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eWildlife art with symbolic resonance maintains strong appeal among discerning collectors. This piece represents both aesthetic authority and thoughtful portfolio diversification.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Stats Section --\u003e\n\u003csection class=\"stats-section\"\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Studio\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Predatory Silence pairs beautifully with complementary works for environments of vigilance and authority.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Monolith\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist black abstract\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eGolden Current\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eControlled-motion executive abstract\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 2rem;\"\u003e\n        \u003cp class=\"description-text\" style=\"font-style: italic;\"\u003e\n            Together, these works shape an environment of vigilance, authority, and quiet confidence.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover more refined monochrome works and powerful portraits from the Black \u0026amp; White Luxury Collection.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eVIEW COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Designed for spaces where power is instinctive rather than displayed.\n        \u003c\/p\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eExecutive Offices\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eModern Penthouses\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Corridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Studies\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eCurated Gallery Walls\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eLeadership Spaces\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"brands-section\"\u003e\n    \u003cdiv class=\"brands-content reveal\"\u003e\n        \u003cp class=\"brands-label\"\u003eSelected for luxury hospitality environments\u003c\/p\u003e\n        \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp\u003eLimited to 50 collectors worldwide. Reserve your numbered edition of instinctive authority.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Predatory%20Silence%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\/\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eGALLERY\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eCONTACT\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"copyright\"\u003e\n            © 2025 Kasian Art Studio. All rights reserved. Limited Edition Fine Art.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Reveal Script --\u003e\n\u003cscript\u003e\n    \/\/ Scroll reveal animation\n    function reveal() {\n        const reveals = document.querySelectorAll('.reveal');\n        \n        reveals.forEach(element =\u003e {\n            const windowHeight = window.innerHeight;\n            const elementTop = element.getBoundingClientRect().top;\n            const elementVisible = 150;\n            \n            if (elementTop \u003c windowHeight - elementVisible) {\n                element.classList.add('active');\n            }\n        });\n    }\n\n    window.addEventListener('scroll', reveal);\n    reveal(); \/\/ Check on load\n\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46081393787045,"sku":"5706087_16039","price":8274.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/2B23D26D-AFFA-4CEF-8468-CEFEA8C16412.png?v=1764731419"},{"product_id":"unbroken-grace","title":"Endure — Worn Ballet Slippers in Monochrome Stillness","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eEndure | Luxury Ballet Fine Art by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A limited edition monochrome ballet artwork honoring discipline and devotion. Museum-grade fine art for refined interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #111111;\n        --accent-color: #a8a8a8;\n        --accent-hover: #c0c0c0;\n        --text-primary: #ffffff;\n        --text-secondary: #a0a0a0;\n        --text-muted: #707070;\n        --divider-color: rgba(168, 168, 168, 0.3);\n        --charcoal-overlay: rgba(168, 168, 168, 0.03);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header Styles *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 100%;\n        background-color: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        padding: 1.5rem 5%;\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        list-style: none;\n        display: flex;\n        gap: 2.5rem;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    nav a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);\n    }\n\n    .hero-content {\n        max-width: 1200px;\n        text-align: center;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1s ease-out 0.3s both;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        letter-spacing: 3px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        animation: fadeInUp 1s ease-out 0.5s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n        animation: fadeIn 1s ease-out 0.7s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        animation: fadeInUp 1s ease-out 0.9s both;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-color);\n        color: var(--primary-bg);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(168, 168, 168, 0.2);\n    }\n\n    \/* Soft texture animation for worn material mood *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(circle at 50% 50%, rgba(168, 168, 168, 0.04) 0%, transparent 60%),\n                    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);\n        animation: textureShift 14s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 400;\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background-color: var(--accent-color);\n        margin: 2rem auto;\n    }\n\n    .description-text {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: justify;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .features-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        transition: all 0.4s ease;\n        background: linear-gradient(135deg, var(--charcoal-overlay) 0%, transparent 100%);\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(168, 168, 168, 0.15);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .stats-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n    }\n\n    .stat-card {\n        text-align: center;\n        padding: 2.5rem 1.5rem;\n        background: linear-gradient(135deg, rgba(168, 168, 168, 0.03) 0%, transparent 100%);\n        border: 1px solid rgba(168, 168, 168, 0.15);\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        max-width: 1000px;\n        margin: 3rem auto 0;\n        display: grid;\n        gap: 2rem;\n    }\n\n    .pairing-item {\n        padding: 2rem;\n        border-left: 2px solid var(--accent-color);\n        background: linear-gradient(90deg, rgba(168, 168, 168, 0.03) 0%, transparent 100%);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        font-style: italic;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        color: var(--text-secondary);\n        font-size: 1.2rem;\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin: 3rem 0;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid rgba(168, 168, 168, 0.3);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n        background: linear-gradient(135deg, var(--charcoal-overlay) 0%, transparent 100%);\n    }\n\n    \/* Luxury Brands *\/\n    .brands-section {\n        padding: 4rem 5%;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .brands-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brands-label {\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);\n        text-align: center;\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        color: var(--text-secondary);\n        font-size: 1.1rem;\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 5%;\n        background-color: var(--primary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        color: var(--text-muted);\n        font-size: 0.85rem;\n    }\n\n    \/* Animations *\/\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from {\n            opacity: 0;\n        }\n        to {\n            opacity: 1;\n        }\n    }\n\n    @keyframes textureShift {\n        0%, 100% {\n            opacity: 0.7;\n            transform: scale(1) rotate(0deg);\n        }\n        50% {\n            opacity: 1;\n            transform: scale(1.05) rotate(1deg);\n        }\n    }\n\n    \/* Scroll reveal animation *\/\n    .reveal {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .reveal.active {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        header {\n            padding: 1rem 5%;\n        }\n\n        nav ul {\n            gap: 1.5rem;\n        }\n\n        nav a {\n            font-size: 0.8rem;\n        }\n\n        .hero {\n            padding: 6rem 5% 3rem;\n        }\n\n        .hero h1 {\n            font-size: 2.5rem;\n        }\n\n        .tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .target-spaces {\n            gap: 1rem;\n        }\n\n        .space-tag {\n            padding: 0.5rem 1rem;\n            font-size: 0.8rem;\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eINQUIRY\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003eEndure\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/d60e7FQ7ebI\" title=\"Endure - Luxury Ballet Fine Art\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"about\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eQuiet Devotion\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            A quiet meditation on devotion, discipline, and grace. Endure honors the unseen labor behind beauty.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eWhat Remains After\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Some objects carry silence like memory.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Endure is not about performance—it is about what remains after.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Soft leather, creased and worn, rests in stillness. These ballet slippers have already lived their purpose. The stage is gone. The applause has faded. What's left is devotion etched into material.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Rendered in rich monochrome, the composition elevates an intimate object into a sculptural relic. The shoes become portrait, landscape, and testimony—celebrating discipline, sacrifice, and quiet persistence. This piece resonates deeply in luxury interiors where meaning matters more than ornament: dressing rooms, corridors, stairwells, private studios, and gallery-inspired homes.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Designed for collectors who value nuance over spectacle.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This is not a dance piece.\u003cbr\u003e\n            It is a legacy piece.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features-section\" id=\"features\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a certificate of authenticity, ensuring exclusivity and enduring value for collectors who appreciate discipline and legacy.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed using pigment-based archival inks on premium fine art substrates for exceptional tonal richness and material integrity.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eBallet-inspired fine art maintains strong appeal among sophisticated collectors. This piece represents both aesthetic refinement and thoughtful portfolio diversification.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Stats Section --\u003e\n\u003csection class=\"stats-section\"\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Studio\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Endure pairs beautifully with complementary works for refined narrative interiors.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eQuiet Surrender\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMonochrome figurative study\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eStill Practice\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist movement-inspired abstract\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 2rem;\"\u003e\n        \u003cp class=\"description-text\" style=\"font-style: italic;\"\u003e\n            Together, they create a refined narrative of discipline, form, and restraint—ideal for vertical architectural spaces or private galleries.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover more refined monochrome works and elegant portraits from the Black \u0026amp; White Luxury Collection.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eVIEW COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Designed for spaces where meaning matters more than ornament.\n        \u003c\/p\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eDressing Rooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eCorridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eStairwells\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Studios\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eGallery-Inspired Homes\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePerformance Spaces\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"brands-section\"\u003e\n    \u003cdiv class=\"brands-content reveal\"\u003e\n        \u003cp class=\"brands-label\"\u003eSelected for luxury hospitality environments\u003c\/p\u003e\n        \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp\u003eLimited to 50 collectors worldwide. Reserve your numbered edition of quiet devotion.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Endure%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\/\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eGALLERY\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eCONTACT\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"copyright\"\u003e\n            © 2025 Kasian Art Studio. All rights reserved. Limited Edition Fine Art.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Reveal Script --\u003e\n\u003cscript\u003e\n    \/\/ Scroll reveal animation\n    function reveal() {\n        const reveals = document.querySelectorAll('.reveal');\n        \n        reveals.forEach(element =\u003e {\n            const windowHeight = window.innerHeight;\n            const elementTop = element.getBoundingClientRect().top;\n            const elementVisible = 150;\n            \n            if (elementTop \u003c windowHeight - elementVisible) {\n                element.classList.add('active');\n            }\n        });\n    }\n\n    window.addEventListener('scroll', reveal);\n    reveal(); \/\/ Check on load\n\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46081396867237,"sku":"3921005_16039","price":8264.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/1F690707-A6BD-4A9B-A1AF-9EBE7C5E3D03.png?v=1764722666"},{"product_id":"veiled-in-silence","title":"Quiet Surrender — Sculptural Figure in Shadow \u0026 Light","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eQuiet Surrender | Luxury Figurative Fine Art by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A limited edition monochrome figure artwork exploring form, vulnerability, and restraint. Designed for luxury architectural interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #111111;\n        --accent-color: #b8b8b8;\n        --accent-hover: #d0d0d0;\n        --text-primary: #ffffff;\n        --text-secondary: #a0a0a0;\n        --text-muted: #707070;\n        --divider-color: rgba(184, 184, 184, 0.3);\n        --graphite-overlay: rgba(184, 184, 184, 0.03);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header Styles *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 100%;\n        background-color: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        padding: 1.5rem 5%;\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        list-style: none;\n        display: flex;\n        gap: 2.5rem;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    nav a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);\n    }\n\n    .hero-content {\n        max-width: 1200px;\n        text-align: center;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1s ease-out 0.3s both;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        letter-spacing: 3px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        animation: fadeInUp 1s ease-out 0.5s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n        animation: fadeIn 1s ease-out 0.7s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        animation: fadeInUp 1s ease-out 0.9s both;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-color);\n        color: var(--primary-bg);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(184, 184, 184, 0.2);\n    }\n\n    \/* Subtle shadow shift animation for sculptural mood *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 60%),\n                    radial-gradient(circle at 60% 70%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);\n        animation: shadowShift 16s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 400;\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background-color: var(--accent-color);\n        margin: 2rem auto;\n    }\n\n    .description-text {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: justify;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .features-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        transition: all 0.4s ease;\n        background: linear-gradient(135deg, var(--graphite-overlay) 0%, transparent 100%);\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(184, 184, 184, 0.15);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .stats-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n    }\n\n    .stat-card {\n        text-align: center;\n        padding: 2.5rem 1.5rem;\n        background: linear-gradient(135deg, rgba(184, 184, 184, 0.03) 0%, transparent 100%);\n        border: 1px solid rgba(184, 184, 184, 0.15);\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        max-width: 1000px;\n        margin: 3rem auto 0;\n        display: grid;\n        gap: 2rem;\n    }\n\n    .pairing-item {\n        padding: 2rem;\n        border-left: 2px solid var(--accent-color);\n        background: linear-gradient(90deg, rgba(184, 184, 184, 0.03) 0%, transparent 100%);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        font-style: italic;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        color: var(--text-secondary);\n        font-size: 1.2rem;\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin: 3rem 0;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid rgba(184, 184, 184, 0.3);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n        background: linear-gradient(135deg, var(--graphite-overlay) 0%, transparent 100%);\n    }\n\n    \/* Luxury Brands *\/\n    .brands-section {\n        padding: 4rem 5%;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .brands-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brands-label {\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);\n        text-align: center;\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        color: var(--text-secondary);\n        font-size: 1.1rem;\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 5%;\n        background-color: var(--primary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        color: var(--text-muted);\n        font-size: 0.85rem;\n    }\n\n    \/* Animations *\/\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from {\n            opacity: 0;\n        }\n        to {\n            opacity: 1;\n        }\n    }\n\n    @keyframes shadowShift {\n        0%, 100% {\n            opacity: 0.8;\n            transform: translateX(0) translateY(0);\n        }\n        50% {\n            opacity: 1;\n            transform: translateX(-10px) translateY(10px);\n        }\n    }\n\n    \/* Scroll reveal animation *\/\n    .reveal {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .reveal.active {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        header {\n            padding: 1rem 5%;\n        }\n\n        nav ul {\n            gap: 1.5rem;\n        }\n\n        nav a {\n            font-size: 0.8rem;\n        }\n\n        .hero {\n            padding: 6rem 5% 3rem;\n        }\n\n        .hero h1 {\n            font-size: 2.5rem;\n        }\n\n        .tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .target-spaces {\n            gap: 1rem;\n        }\n\n        .space-tag {\n            padding: 0.5rem 1rem;\n            font-size: 0.8rem;\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eINQUIRY\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003eQuiet Surrender\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/6k8UAC4V5ss\" title=\"Quiet Surrender - Luxury Figurative Fine Art\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"about\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eSculptural Gravity\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            A powerful monochrome figure study exploring vulnerability, form, and restraint. Quiet Surrender anchors architectural interiors with emotional gravity.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003ePresence Through Absence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Quiet Surrender is an exploration of presence through absence.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            The figure—curled, inward, exposed yet protected—emerges from shadow in soft graphite tones. There is no spectacle here. No ornament. Only form, weight, and psychological stillness. The composition echoes classical sculpture while remaining unmistakably modern, allowing the body to become architecture and emotion to become structure.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Designed for refined stairwells, gallery corridors, private residences, and contemplative luxury spaces, this piece thrives in environments where silence is intentional. Its monochrome palette pairs seamlessly with concrete, limestone, plaster, and minimalist architectural lines—enhancing vertical movement and spatial tension.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This artwork is not meant to decorate.\u003cbr\u003e\n            It is meant to be encountered.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features-section\" id=\"features\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a certificate of authenticity, ensuring exclusivity and lasting value for collectors who appreciate emotional depth.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed using pigment-based archival inks on premium fine art substrates for exceptional tonal depth and sculptural presence.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eContemplative figurative works maintain enduring appeal among discerning collectors. This piece represents both aesthetic sophistication and thoughtful portfolio diversification.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Stats Section --\u003e\n\u003csection class=\"stats-section\"\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Studio\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Quiet Surrender pairs beautifully with complementary works for architectural interiors.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eInner Still\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist black \u0026amp; white abstract\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSoft Monument\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eTonal architectural form study\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 2rem;\"\u003e\n        \u003cp class=\"description-text\" style=\"font-style: italic;\"\u003e\n            Paired together, these works create a refined emotional corridor—ideal for staircases, entryways, and gallery-style halls.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover more refined monochrome works and elegant portraits from the Black \u0026amp; White Luxury Collection.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eVIEW COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Designed for environments where silence is intentional.\n        \u003c\/p\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eRefined Stairwells\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eGallery Corridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Residences\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eContemplative Spaces\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eArchitectural Interiors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eLuxury Entryways\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"brands-section\"\u003e\n    \u003cdiv class=\"brands-content reveal\"\u003e\n        \u003cp class=\"brands-label\"\u003eSelected for luxury hospitality environments\u003c\/p\u003e\n        \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp\u003eLimited to 50 collectors worldwide. Reserve your numbered edition of sculptural stillness.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Quiet%20Surrender%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\/\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eGALLERY\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eCONTACT\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"copyright\"\u003e\n            © 2025 Kasian Art Studio. All rights reserved. Limited Edition Fine Art.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Reveal Script --\u003e\n\u003cscript\u003e\n    \/\/ Scroll reveal animation\n    function reveal() {\n        const reveals = document.querySelectorAll('.reveal');\n        \n        reveals.forEach(element =\u003e {\n            const windowHeight = window.innerHeight;\n            const elementTop = element.getBoundingClientRect().top;\n            const elementVisible = 150;\n            \n            if (elementTop \u003c windowHeight - elementVisible) {\n                element.classList.add('active');\n            }\n        });\n    }\n\n    window.addEventListener('scroll', reveal);\n    reveal(); \/\/ Check on load\n\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46081399259301,"sku":"6686612_16039","price":7764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/097062EE-0651-4EC0-A347-D5778DA788F1.png?v=1764721982"},{"product_id":"scarlet-whisper","title":"SCARLET LIPS — Limited Edition Noir Portrait","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eScarlet Whisper | Luxury Noir Fine Art by Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A limited edition noir portrait defined by elegance and restraint. Museum-grade fine art designed for luxury interiors and collectors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #111111;\n        --accent-color: #8B0000;\n        --accent-hover: #a30000;\n        --text-primary: #ffffff;\n        --text-secondary: #a0a0a0;\n        --text-muted: #707070;\n        --divider-color: rgba(139, 0, 0, 0.3);\n        --crimson-overlay: rgba(139, 0, 0, 0.05);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header Styles *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 100%;\n        background-color: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        padding: 1.5rem 5%;\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        list-style: none;\n        display: flex;\n        gap: 2.5rem;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    nav a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);\n    }\n\n    .hero-content {\n        max-width: 1200px;\n        text-align: center;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1s ease-out 0.3s both;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        letter-spacing: 3px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        animation: fadeInUp 1s ease-out 0.5s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n        animation: fadeIn 1s ease-out 0.7s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        animation: fadeInUp 1s ease-out 0.9s both;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-color);\n        color: var(--text-primary);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);\n    }\n\n    \/* Crimson pulse animation for dramatic mood *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 60%),\n                    radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.04) 0%, transparent 50%);\n        animation: crimsonPulse 12s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 400;\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background-color: var(--accent-color);\n        margin: 2rem auto;\n    }\n\n    .description-text {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: justify;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .features-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        transition: all 0.4s ease;\n        background: linear-gradient(135deg, var(--crimson-overlay) 0%, transparent 100%);\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .stats-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n    }\n\n    .stat-card {\n        text-align: center;\n        padding: 2.5rem 1.5rem;\n        background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, transparent 100%);\n        border: 1px solid rgba(139, 0, 0, 0.2);\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        max-width: 1000px;\n        margin: 3rem auto 0;\n        display: grid;\n        gap: 2rem;\n    }\n\n    .pairing-item {\n        padding: 2rem;\n        border-left: 2px solid var(--accent-color);\n        background: linear-gradient(90deg, rgba(139, 0, 0, 0.05) 0%, transparent 100%);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        font-style: italic;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        color: var(--text-secondary);\n        font-size: 1.2rem;\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin: 3rem 0;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid rgba(139, 0, 0, 0.3);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n        background: linear-gradient(135deg, var(--crimson-overlay) 0%, transparent 100%);\n    }\n\n    \/* Luxury Brands *\/\n    .brands-section {\n        padding: 4rem 5%;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .brands-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brands-label {\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);\n        text-align: center;\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        color: var(--text-secondary);\n        font-size: 1.1rem;\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 5%;\n        background-color: var(--primary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        color: var(--text-muted);\n        font-size: 0.85rem;\n    }\n\n    \/* Animations *\/\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from {\n            opacity: 0;\n        }\n        to {\n            opacity: 1;\n        }\n    }\n\n    @keyframes crimsonPulse {\n        0%, 100% {\n            opacity: 0.6;\n            transform: scale(1);\n        }\n        50% {\n            opacity: 1;\n            transform: scale(1.1);\n        }\n    }\n\n    \/* Scroll reveal animation *\/\n    .reveal {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .reveal.active {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        header {\n            padding: 1rem 5%;\n        }\n\n        nav ul {\n            gap: 1.5rem;\n        }\n\n        nav a {\n            font-size: 0.8rem;\n        }\n\n        .hero {\n            padding: 6rem 5% 3rem;\n        }\n\n        .hero h1 {\n            font-size: 2.5rem;\n        }\n\n        .tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .target-spaces {\n            gap: 1rem;\n        }\n\n        .space-tag {\n            padding: 0.5rem 1rem;\n            font-size: 0.8rem;\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eINQUIRY\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003eScarlet Whisper\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/vfYwTkmZRIg\" title=\"Scarlet Whisper - Luxury Noir Fine Art\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"about\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eQuiet Intensity\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            A study in silence and seduction. Scarlet Whisper captures restrained power through contrast, elegance, and unapologetic femininity.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Portrait\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Scarlet Whisper is a meditation on quiet intensity.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Rendered in velvety monochrome, the composition offers softness without fragility and confidence without excess. Flowing platinum hair cascades across the face, obscuring the gaze—the ultimate luxury gesture of withholding. Against this stillness, a single note of crimson emerges: lips painted not to provoke, but to command.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This work speaks in whispers rather than declarations. It belongs to collectors who understand that true magnetism is controlled, intentional, and timeless.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            The interplay of grayscale tonality and bold red creates a cinematic tension reminiscent of classic editorial fashion photography and old-Hollywood noir. It elevates bedroom suites, dressing rooms, private lounges, boutique hotel corridors, and executive spaces seeking sensuality without spectacle.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Printed to museum standards and released as a strictly limited edition, Scarlet Whisper is designed to become a signature piece—an object of presence, not trend.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features-section\" id=\"features\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a certificate of authenticity, ensuring exclusivity and long-term value appreciation for discerning collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed using pigment-based archival inks on premium fine art substrates for exceptional color integrity and dramatic contrast preservation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eNoir portraits with bold color accents maintain strong demand among sophisticated collectors. This piece represents both aesthetic sophistication and thoughtful portfolio diversification.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Stats Section --\u003e\n\u003csection class=\"stats-section\"\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Studio\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Scarlet Whisper pairs beautifully with complementary works for sophisticated interiors.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eVelvet Silence\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist black-on-black abstraction\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eNoir Muse\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eClassic feminine portraiture\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 2rem;\"\u003e\n        \u003cp class=\"description-text\" style=\"font-style: italic;\"\u003e\n            Together, these works create a collector-grade narrative of controlled sensuality and quiet authority.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover more refined noir portraits and elegant monochrome works from the Black \u0026amp; White Luxury Collection.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eVIEW COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Designed for spaces seeking sensuality without spectacle.\n        \u003c\/p\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eBedroom Suites\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eDressing Rooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Lounges\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Corridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eExecutive Spaces\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eLuxury Penthouses\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"brands-section\"\u003e\n    \u003cdiv class=\"brands-content reveal\"\u003e\n        \u003cp class=\"brands-label\"\u003eSelected for luxury hospitality environments\u003c\/p\u003e\n        \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp\u003eLimited to 50 collectors worldwide. Reserve your numbered edition of quiet power.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Scarlet%20Whisper%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\/\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eGALLERY\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eCONTACT\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"copyright\"\u003e\n            © 2025 Kasian Art Studio. All rights reserved. Limited Edition Fine Art.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Reveal Script --\u003e\n\u003cscript\u003e\n    \/\/ Scroll reveal animation\n    function reveal() {\n        const reveals = document.querySelectorAll('.reveal');\n        \n        reveals.forEach(element =\u003e {\n            const windowHeight = window.innerHeight;\n            const elementTop = element.getBoundingClientRect().top;\n            const elementVisible = 150;\n            \n            if (elementTop \u003c windowHeight - elementVisible) {\n                element.classList.add('active');\n            }\n        });\n    }\n\n    window.addEventListener('scroll', reveal);\n    reveal(); \/\/ Check on load\n\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46081401749669,"sku":"5500152_16039","price":6764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_4066.png?v=1764720373"},{"product_id":"veil-of-intention","title":"“Veil of Intention” — Couture Noir Fine Art Portrait","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eVeiled Gaze | Luxury Noir Portrait Art by Kasian\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A refined black-and-white noir portrait expressing quiet power and elegance. Limited edition fine art for luxury interiors and collectors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #111111;\n        --accent-color: #c9a227;\n        --accent-hover: #d4b038;\n        --text-primary: #ffffff;\n        --text-secondary: #a0a0a0;\n        --text-muted: #707070;\n        --divider-color: rgba(201, 162, 39, 0.3);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header Styles *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 100%;\n        background-color: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        padding: 1.5rem 5%;\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        list-style: none;\n        display: flex;\n        gap: 2.5rem;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    nav a:hover {\n        color: var(--accent-color);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);\n    }\n\n    .hero-content {\n        max-width: 1200px;\n        text-align: center;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--accent-color);\n        color: var(--accent-color);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        margin-bottom: 2rem;\n        animation: fadeIn 1s ease-out 0.3s both;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        letter-spacing: 3px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        animation: fadeInUp 1s ease-out 0.5s both;\n    }\n\n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n        animation: fadeIn 1s ease-out 0.7s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background-color: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        animation: fadeInUp 1s ease-out 0.9s both;\n    }\n\n    .cta-button:hover {\n        background-color: var(--accent-color);\n        color: var(--primary-bg);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);\n    }\n\n    \/* Floating particles animation *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),\n                    radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 50%);\n        animation: subtleFloat 20s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 400;\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background-color: var(--accent-color);\n        margin: 2rem auto;\n    }\n\n    .description-text {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: justify;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .features-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid rgba(255, 255, 255, 0.1);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Stats Grid *\/\n    .stats-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .stats-grid {\n        max-width: 1200px;\n        margin: 3rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n    }\n\n    .stat-card {\n        text-align: center;\n        padding: 2.5rem 1.5rem;\n        background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%);\n        border: 1px solid rgba(201, 162, 39, 0.2);\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 6rem 5%;\n        background-color: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        max-width: 1000px;\n        margin: 3rem auto 0;\n        display: grid;\n        gap: 2rem;\n    }\n\n    .pairing-item {\n        padding: 2rem;\n        border-left: 2px solid var(--accent-color);\n        background: linear-gradient(90deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 0.5rem;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        font-style: italic;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        color: var(--text-secondary);\n        font-size: 1.2rem;\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        padding: 6rem 5%;\n        background-color: var(--primary-bg);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin: 3rem 0;\n    }\n\n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        border: 1px solid rgba(201, 162, 39, 0.3);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n    }\n\n    \/* Luxury Brands *\/\n    .brands-section {\n        padding: 4rem 5%;\n        background-color: var(--secondary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n        border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .brands-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .brands-label {\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n\n    .brands-list {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 2px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);\n        text-align: center;\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        color: var(--text-secondary);\n        font-size: 1.1rem;\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        padding: 3rem 5%;\n        background-color: var(--primary-bg);\n        border-top: 1px solid rgba(255, 255, 255, 0.1);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n\n    .copyright {\n        width: 100%;\n        text-align: center;\n        margin-top: 2rem;\n        color: var(--text-muted);\n        font-size: 0.85rem;\n    }\n\n    \/* Animations *\/\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    @keyframes fadeIn {\n        from {\n            opacity: 0;\n        }\n        to {\n            opacity: 1;\n        }\n    }\n\n    @keyframes subtleFloat {\n        0%, 100% {\n            transform: translateY(0) scale(1);\n        }\n        50% {\n            transform: translateY(-20px) scale(1.05);\n        }\n    }\n\n    \/* Scroll reveal animation *\/\n    .reveal {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .reveal.active {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        header {\n            padding: 1rem 5%;\n        }\n\n        nav ul {\n            gap: 1.5rem;\n        }\n\n        nav a {\n            font-size: 0.8rem;\n        }\n\n        .hero {\n            padding: 6rem 5% 3rem;\n        }\n\n        .hero h1 {\n            font-size: 2.5rem;\n        }\n\n        .tagline {\n            font-size: 1.2rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .target-spaces {\n            gap: 1rem;\n        }\n\n        .space-tag {\n            padding: 0.5rem 1rem;\n            font-size: 0.8rem;\n        }\n\n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eINQUIRY\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLIMITED EDITION OF 50\u003c\/div\u003e\n        \u003ch1\u003eVeiled Gaze\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/rpCCGNqXZX4\" title=\"Veiled Gaze - Luxury Noir Portrait Art\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"about\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eQuiet Power\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            An intimate study of restraint and allure. Veiled Gaze captures feminine quiet power through shadow, softness, and timeless elegance.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Portrait\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Veiled Gaze is a portrait of presence rather than identity.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Rendered in refined monochrome, the subject's face emerges slowly from darkness—half revealed, half withheld. The eye commands without demanding. Lips hold silence, not submission. This is not seduction. It is sovereignty expressed through stillness.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            The composition is cinematic and deliberate. Soft tonal gradients melt into sculptural highlights, echoing classic film noir portraiture while maintaining contemporary restraint. Every curve, every shadow serves purpose. Nothing is ornamental.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This work lives effortlessly in luxury bedrooms, boutique hotel suites, penthouses, private lounges, and gallery spaces where intimacy is curated with intention. It creates atmosphere without intrusion—a visual whisper that lingers long after the room is quiet.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Printed with museum-grade archival pigments on premium fine art substrates and released in a strictly limited edition, Veiled Gaze is designed as a timeless collector's piece.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            It does not look back.\u003cbr\u003e\n            It knows you're there.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features-section\" id=\"features\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a certificate of authenticity, ensuring exclusivity and long-term value appreciation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed using pigment-based archival inks on premium fine art substrates for unparalleled tonal depth and preservation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eNoir portraits maintain strong demand among discerning collectors. This piece represents both aesthetic sophistication and thoughtful portfolio diversification.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Stats Section --\u003e\n\u003csection class=\"stats-section\"\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card reveal\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Studio\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cdiv class=\"description-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Veiled Gaze pairs beautifully with complementary works for cohesive luxury interiors.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Icon\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eBold sculptural femininity\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eWhispered Authority\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist noir control\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv style=\"text-align: center; margin-top: 2rem;\"\u003e\n        \u003cp class=\"description-text\" style=\"font-style: italic;\"\u003e\n            Together, these works create a cohesive portrait series selected for luxury hospitality suites, private collectors, and editorial interiors.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover more refined portraits and elegant abstracts from the Black \u0026amp; White Luxury Collection.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eVIEW COLLECTION\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content reveal\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Designed for spaces where restraint speaks louder than opulence.\n        \u003c\/p\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eLuxury Bedrooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePenthouses\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Lounges\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eGallery Spaces\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eExecutive Offices\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"brands-section\"\u003e\n    \u003cdiv class=\"brands-content reveal\"\u003e\n        \u003cp class=\"brands-label\"\u003eSelected for luxury hospitality environments\u003c\/p\u003e\n        \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n    \u003cdiv class=\"reveal\"\u003e\n        \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp\u003eLimited to 50 collectors worldwide. Reserve your numbered edition.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Veiled%20Gaze%20Limited%20Edition\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\/\"\u003eINSTAGRAM\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eGALLERY\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eCONTACT\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"copyright\"\u003e\n            © 2025 Kasian Art Studio. All rights reserved. Limited Edition Fine Art.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Reveal Script --\u003e\n\u003cscript\u003e\n    \/\/ Scroll reveal animation\n    function reveal() {\n        const reveals = document.querySelectorAll('.reveal');\n        \n        reveals.forEach(element =\u003e {\n            const windowHeight = window.innerHeight;\n            const elementTop = element.getBoundingClientRect().top;\n            const elementVisible = 150;\n            \n            if (elementTop \u003c windowHeight - elementVisible) {\n                element.classList.add('active');\n            }\n        });\n    }\n\n    window.addEventListener('scroll', reveal);\n    reveal(); \/\/ Check on load\n\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46083368648869,"sku":"5076133_16039","price":8764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/D0E9D160-E9D5-4E19-84A4-4BF79FDF47EE.png?v=1764643044"},{"product_id":"bubblegum-vogue","title":"BUBBLE GUM VOGUE — Limited Edition Editorial Noir Pop Art","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003ePink Defiance | Noir Pop Portrait Fine Art by Kasian\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A bold noir pop art portrait with pink accent. Limited edition fine art for collectors, boutique hotels, penthouses, and galleries.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700;800\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-card: #121212;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #d97ba6;\n        --accent-light: #f0a5c8;\n        --accent-dark: #b85585;\n        --gold: #d4a574;\n        --border: rgba(217, 123, 166, 0.2);\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border);\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-weight: 400;\n    }\n\n    nav a:hover {\n        color: var(--accent-light);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a0f14 100%);\n    }\n\n    .hero-background {\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        opacity: 0.1;\n        background: \n            radial-gradient(circle at 40% 50%, rgba(217, 123, 166, 0.15) 0%, transparent 60%),\n            radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);\n        animation: popGlow 10s ease-in-out infinite;\n    }\n\n    @keyframes popGlow {\n        0%, 100% { opacity: 0.1; }\n        50% { opacity: 0.18; }\n    }\n\n    .hero-content {\n        text-align: center;\n        z-index: 10;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-family: var(--sans);\n        font-size: 0.9rem;\n        letter-spacing: 3px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: var(--display);\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 300;\n        letter-spacing: 3px;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        color: var(--text-primary);\n    }\n\n    .hero-tagline {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 2.5rem;\n        letter-spacing: 2px;\n    }\n\n    .hero-edition {\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        color: var(--accent);\n        margin-bottom: 3rem;\n        text-transform: uppercase;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--text-primary);\n        text-decoration: none;\n        border: 1px solid var(--accent);\n        font-family: var(--sans);\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n        border-color: var(--accent-light);\n    }\n\n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        animation: bounce 2s infinite;\n    }\n\n    @keyframes bounce {\n        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }\n        40% { transform: translateX(-50%) translateY(-10px); }\n        60% { transform: translateX(-50%) translateY(-5px); }\n    }\n\n    .scroll-indicator::after {\n        content: '↓';\n        font-size: 1.5rem;\n        color: var(--accent);\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 8rem 2rem;\n        background: var(--bg-dark);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Content Sections *\/\n    .section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 4vw, 3rem);\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent);\n        margin: 3rem auto;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description-text {\n        font-family: var(--serif);\n        font-size: 1.4rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        background: var(--bg-dark);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 1.8rem;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-text {\n        font-family: var(--sans);\n        font-size: 0.95rem;\n        line-height: 1.7;\n        color: var(--text-secondary);\n    }\n\n    \/* Edition Stats *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 4rem auto 0;\n        padding: 3rem 0;\n        border-top: 1px solid var(--border);\n    }\n\n    .stat-item {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        background: var(--bg-dark);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .pairing-card {\n        background: var(--bg-card);\n        border: 1px solid var(--border);\n        padding: 2rem;\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .pairing-description {\n        font-family: var(--serif);\n        font-size: 1rem;\n        color: var(--text-secondary);\n        line-height: 1.6;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, #1a0f14 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 2rem;\n    }\n\n    .collection-cta-title {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .investment-title {\n        font-family: var(--display);\n        font-size: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .investment-text {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .spaces-list {\n        font-family: var(--sans);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--accent);\n        text-transform: uppercase;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        background: var(--bg-dark);\n        padding: 4rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--border);\n    }\n\n    .brand-strip-title {\n        font-family: var(--sans);\n        font-size: 0.8rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .brand-logos {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        color: var(--accent);\n        letter-spacing: 8px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a0f14 100%);\n        text-align: center;\n        padding: 8rem 2rem;\n    }\n\n    .final-cta-title {\n        font-family: var(--display);\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 1rem;\n    }\n\n    .inquiry-email {\n        font-family: var(--sans);\n        font-size: 1rem;\n        color: var(--accent);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        padding: 3rem 2rem;\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-light);\n    }\n\n    .copyright {\n        font-family: var(--sans);\n        font-size: 0.8rem;\n        color: var(--text-secondary);\n        letter-spacing: 1px;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .header-content {\n            flex-direction: column;\n            gap: 1rem;\n        }\n\n        nav ul {\n            gap: 1rem;\n            flex-wrap: wrap;\n            justify-content: center;\n        }\n\n        .hero-title {\n            font-size: 2.5rem;\n        }\n\n        .section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .stats-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Smooth Scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Fade-in Animation *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-background\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition Noir Pop Portrait\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003ePink Defiance\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003cdiv class=\"hero-edition\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection id=\"artwork\" class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/e3GwTd-5S7w?rel=0\" title=\"Pink Defiance - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section section\"\u003e\n    \u003cdiv class=\"description-content\"\u003e\n        \u003cp class=\"description-text\"\u003eCool defiance in a single breath. Pink Defiance fuses noir restraint with a rebellious pop accent—crafted for collectors who prefer elegance with an edge.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section section fade-in\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Work\u003c\/h2\u003e\n        \u003cp class=\"backstory-text\"\u003ePink Defiance captures a moment of deliberate contradiction.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003eA monochrome feminine portrait—cool, composed, inscrutable—interrupted by a single bubble of pink. The color is not playful. It is intentional. A refusal to conform quietly. Gold-rimmed sunglasses obscure the eyes, denying access while amplifying authority.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003eThis piece speaks in opposites: softness against control, innocence against power, silence against statement. The limited palette heightens impact, allowing the pink to function as punctuation rather than decoration.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003eDesigned for fashion-forward penthouses, boutique hotel lounges, creative executive offices, and collector walls that value personality without noise, Pink Defiance commands attention without raising its voice.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003ePrinted using museum-grade archival pigments on premium fine art substrates and released in a strictly limited edition, this work bridges noir sophistication with modern pop irreverence.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\" style=\"font-style: italic; text-align: center; margin-top: 2rem;\"\u003eShe doesn't ask permission. She pauses—and proceeds.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"details\" class=\"features-section section fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Distinction\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a Certificate of Authenticity, ensuring exclusivity and lasting collector appeal.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed with archival pigments on premium fine art substrates, preserving the work's dramatic contrast and pink accent for generations.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003ePop-influenced portraiture maintains strong demand in contemporary markets. Pink Defiance's confident composition positions it as a statement piece for forward-thinking collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Proof\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"pairings-section section fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eObsidian Gaze\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eControlled authority meets rebellious spirit. A pairing that balances noir sophistication with contemporary edge.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eIvory Silence\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist restraint with bold punctuation. Together, these works create a fashion-noir pop trilogy of quiet power.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cp style=\"text-align: center; margin-top: 3rem; font-family: var(--serif); font-size: 1.1rem; color: var(--text-secondary);\"\u003e\n        Ideal for gallery walls, hotel bars, creative corridors, and statement interiors.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection id=\"collection\" class=\"collection-cta fade-in\"\u003e\n    \u003ch2 class=\"collection-cta-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"collection-cta-text\"\u003ePink Defiance belongs to the Emotional Figurative Collection—a curated series of expressive portraits designed for spaces that value personality, confidence, and contemporary artistic vision.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section section fade-in\"\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003ch2 class=\"investment-title\"\u003eDesigned for Bold Interiors\u003c\/h2\u003e\n        \u003cp class=\"investment-text\"\u003ePink Defiance is created for spaces that embrace contrast—where sophistication meets rebellion, and where personality is expressed through controlled defiance rather than volume.\u003c\/p\u003e\n        \u003cp class=\"spaces-list\"\u003eFashion-Forward Penthouses • Boutique Hotel Lounges • Creative Executive Offices • Gallery Walls • Statement Interiors\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip fade-in\"\u003e\n    \u003cdiv class=\"brand-strip-title\"\u003eTrusted by Luxury Brands Worldwide\u003c\/div\u003e\n    \u003cdiv class=\"brand-logos\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection id=\"inquiry\" class=\"final-cta fade-in\"\u003e\n    \u003ch2 class=\"final-cta-title\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp class=\"final-cta-text\"\u003ePink Defiance is available for private acquisition.\u003c\/p\u003e\n    \u003cp class=\"inquiry-email\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Pink%20Defiance\" class=\"cta-button\"\u003eContact Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    document.addEventListener('DOMContentLoaded', function() {\n        try {\n            \/\/ Fade-in on scroll\n            const observerOptions = {\n                threshold: 0.1,\n                rootMargin: '0px 0px -50px 0px'\n            };\n\n            const observer = new IntersectionObserver((entries) =\u003e {\n                entries.forEach(entry =\u003e {\n                    if (entry.isIntersecting) {\n                        entry.target.classList.add('visible');\n                    }\n                });\n            }, observerOptions);\n\n            document.querySelectorAll('.fade-in').forEach(el =\u003e {\n                observer.observe(el);\n            });\n\n            \/\/ Header scroll effect\n            let lastScroll = 0;\n            window.addEventListener('scroll', () =\u003e {\n                const currentScroll = window.pageYOffset;\n                const header = document.querySelector('header');\n                \n                if (header) {\n                    if (currentScroll \u003e 100) {\n                        header.style.padding = '1rem 0';\n                    } else {\n                        header.style.padding = '1.5rem 0';\n                    }\n                }\n                \n                lastScroll = currentScroll;\n            });\n\n            \/\/ Smooth scroll for anchor links\n            document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n                anchor.addEventListener('click', function (e) {\n                    e.preventDefault();\n                    const target = document.querySelector(this.getAttribute('href'));\n                    if (target) {\n                        target.scrollIntoView({\n                            behavior: 'smooth',\n                            block: 'start'\n                        });\n                    }\n                });\n            });\n        } catch (error) {\n            console.error('Error initializing page scripts:', error);\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46083372613797,"sku":"6161911_16039","price":8264.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46083372646565,"sku":"6161911_16045","price":8264.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46083372679333,"sku":"6161911_15700","price":8264.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/8CF10ED3-F1B4-4CFC-82A2-7749D6C70FA4.png?v=1764359811"},{"product_id":"couture-noir","title":"Couture Noire— Limited Edition Noir Portrait Fine Art","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eObsidian Gaze | Luxury Noir Portrait Art by Kasian\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A striking noir portrait fine art piece in black and ivory tones. Limited edition artwork for collectors, galleries, penthouses, and luxury hotels.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700;800\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-card: #141414;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #e8d5b7;\n        --accent-light: #f5e6d3;\n        --accent-dark: #a89968;\n        --border: rgba(232, 213, 183, 0.15);\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border);\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav ul {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-weight: 400;\n    }\n\n    nav a:hover {\n        color: var(--accent-light);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1612 100%);\n    }\n\n    .hero-background {\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        opacity: 0.08;\n        background: \n            radial-gradient(circle at 50% 30%, rgba(232, 213, 183, 0.1) 0%, transparent 60%),\n            radial-gradient(circle at 80% 70%, rgba(232, 213, 183, 0.05) 0%, transparent 50%);\n        animation: subtleGlow 12s ease-in-out infinite;\n    }\n\n    @keyframes subtleGlow {\n        0%, 100% { opacity: 0.08; }\n        50% { opacity: 0.15; }\n    }\n\n    .hero-content {\n        text-align: center;\n        z-index: 10;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-family: var(--sans);\n        font-size: 0.9rem;\n        letter-spacing: 3px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: var(--display);\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 300;\n        letter-spacing: 3px;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        color: var(--text-primary);\n    }\n\n    .hero-tagline {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 2.5rem;\n        letter-spacing: 2px;\n    }\n\n    .hero-edition {\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        color: var(--accent);\n        margin-bottom: 3rem;\n        text-transform: uppercase;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--text-primary);\n        text-decoration: none;\n        border: 1px solid var(--accent);\n        font-family: var(--sans);\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n        border-color: var(--accent-light);\n    }\n\n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        animation: bounce 2s infinite;\n    }\n\n    @keyframes bounce {\n        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }\n        40% { transform: translateX(-50%) translateY(-10px); }\n        60% { transform: translateX(-50%) translateY(-5px); }\n    }\n\n    .scroll-indicator::after {\n        content: '↓';\n        font-size: 1.5rem;\n        color: var(--accent);\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 8rem 2rem;\n        background: var(--bg-dark);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--border);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Content Sections *\/\n    .section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 4vw, 3rem);\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent);\n        margin: 3rem auto;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description-text {\n        font-family: var(--serif);\n        font-size: 1.4rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        background: var(--bg-dark);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 1.8rem;\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-text {\n        font-family: var(--sans);\n        font-size: 0.95rem;\n        line-height: 1.7;\n        color: var(--text-secondary);\n    }\n\n    \/* Edition Stats *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 4rem auto 0;\n        padding: 3rem 0;\n        border-top: 1px solid var(--border);\n    }\n\n    .stat-item {\n        text-align: center;\n    }\n\n    .stat-number {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        background: var(--bg-dark);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .pairing-card {\n        background: var(--bg-card);\n        border: 1px solid var(--border);\n        padding: 2rem;\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .pairing-description {\n        font-family: var(--serif);\n        font-size: 1rem;\n        color: var(--text-secondary);\n        line-height: 1.6;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, #1a1612 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 2rem;\n    }\n\n    .collection-cta-title {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .investment-title {\n        font-family: var(--display);\n        font-size: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .investment-text {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .spaces-list {\n        font-family: var(--sans);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--accent);\n        text-transform: uppercase;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        background: var(--bg-dark);\n        padding: 4rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--border);\n    }\n\n    .brand-strip-title {\n        font-family: var(--sans);\n        font-size: 0.8rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .brand-logos {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        color: var(--accent);\n        letter-spacing: 8px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1612 100%);\n        text-align: center;\n        padding: 8rem 2rem;\n    }\n\n    .final-cta-title {\n        font-family: var(--display);\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 1rem;\n    }\n\n    .inquiry-email {\n        font-family: var(--sans);\n        font-size: 1rem;\n        color: var(--accent);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--bg-card);\n        border-top: 1px solid var(--border);\n        padding: 3rem 2rem;\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-light);\n    }\n\n    .copyright {\n        font-family: var(--sans);\n        font-size: 0.8rem;\n        color: var(--text-secondary);\n        letter-spacing: 1px;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .header-content {\n            flex-direction: column;\n            gap: 1rem;\n        }\n\n        nav ul {\n            gap: 1rem;\n            flex-wrap: wrap;\n            justify-content: center;\n        }\n\n        .hero-title {\n            font-size: 2.5rem;\n        }\n\n        .section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .stats-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Smooth Scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Fade-in Animation *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-background\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition Noir Portrait\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003eObsidian Gaze\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003cdiv class=\"hero-edition\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection id=\"artwork\" class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/cpCeyoLpkEw?rel=0\" title=\"Obsidian Gaze - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section section\"\u003e\n    \u003cdiv class=\"description-content\"\u003e\n        \u003cp class=\"description-text\"\u003eA face half-veiled in shadow. Obsidian Gaze is a study in control, allure, and unspoken authority—created for interiors that understand presence is power.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section section fade-in\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Work\u003c\/h2\u003e\n        \u003cp class=\"backstory-text\"\u003eObsidian Gaze commands the room before a single word is spoken.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003eA monochrome feminine portrait emerges from darkness—her hat cutting a sharp diagonal across her face, revealing only what is necessary. One eye meets the viewer with absolute precision. The lips, sculpted and deliberate, remain unreadable. This is not a portrait of beauty alone—it is a portrait of authority.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003eThe composition draws from editorial fashion, classic noir cinema, and modern minimalism. High contrast black and ivory tones create tension, while the symmetry and framing anchor the viewer in stillness. Nothing is accidental. Nothing is excessive.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003eDesigned for luxury hotel corridors, private galleries, penthouses, executive lounges, and fashion-forward interiors, Obsidian Gaze functions as an emotional focal point—refined, controlled, unforgettable.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003ePrinted with museum-grade archival inks on premium fine art substrates and released in a strictly limited edition, this artwork is positioned as a legacy piece for collectors and hospitality environments alike.\u003c\/p\u003e\n        \u003cp class=\"backstory-text\" style=\"font-style: italic; text-align: center; margin-top: 2rem;\"\u003eShe does not seek attention. She defines it.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"details\" class=\"features-section section fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Distinction\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a Certificate of Authenticity, ensuring exclusivity and enduring collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed with archival pigments on premium fine art substrates, preserving the dramatic tonal precision and noir aesthetic for generations.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003ePortrait fine art maintains exceptional demand in luxury hospitality and residential markets. Obsidian Gaze's commanding presence positions it as a timeless statement for curated interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eArtist Proof\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"pairings-section section fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eIvory Silence\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimalist restraint meets controlled elegance. A pairing that balances commanding presence with quiet sophistication.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eVelvet Ascent\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eEditorial confidence with fashion-forward authority. Together, these works create a fashion-noir narrative of power and grace.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cp style=\"text-align: center; margin-top: 3rem; font-family: var(--serif); font-size: 1.1rem; color: var(--text-secondary);\"\u003e\n        Ideal for boutique hotel corridors, gallery installations, and elevated residential transitions.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection id=\"collection\" class=\"collection-cta fade-in\"\u003e\n    \u003ch2 class=\"collection-cta-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"collection-cta-text\"\u003eObsidian Gaze belongs to the Black \u0026amp; White Luxury Collection—a curated series of monochromatic works designed for spaces that value dramatic contrast, timeless elegance, and commanding presence.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section section fade-in\"\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003ch2 class=\"investment-title\"\u003eDesigned for Commanding Spaces\u003c\/h2\u003e\n        \u003cp class=\"investment-text\"\u003eObsidian Gaze is created for interiors where presence matters—where authority is felt rather than announced, and where elegance operates through controlled restraint.\u003c\/p\u003e\n        \u003cp class=\"spaces-list\"\u003eLuxury Hotel Corridors • Private Galleries • Penthouses • Executive Lounges • Fashion-Forward Interiors\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip fade-in\"\u003e\n    \u003cdiv class=\"brand-strip-title\"\u003eTrusted by Luxury Brands Worldwide\u003c\/div\u003e\n    \u003cdiv class=\"brand-logos\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection id=\"inquiry\" class=\"final-cta fade-in\"\u003e\n    \u003ch2 class=\"final-cta-title\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp class=\"final-cta-text\"\u003eObsidian Gaze is available for private acquisition.\u003c\/p\u003e\n    \u003cp class=\"inquiry-email\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Obsidian%20Gaze\" class=\"cta-button\"\u003eContact Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    document.addEventListener('DOMContentLoaded', function() {\n        try {\n            \/\/ Fade-in on scroll\n            const observerOptions = {\n                threshold: 0.1,\n                rootMargin: '0px 0px -50px 0px'\n            };\n\n            const observer = new IntersectionObserver((entries) =\u003e {\n                entries.forEach(entry =\u003e {\n                    if (entry.isIntersecting) {\n                        entry.target.classList.add('visible');\n                    }\n                });\n            }, observerOptions);\n\n            document.querySelectorAll('.fade-in').forEach(el =\u003e {\n                observer.observe(el);\n            });\n\n            \/\/ Header scroll effect\n            let lastScroll = 0;\n            window.addEventListener('scroll', () =\u003e {\n                const currentScroll = window.pageYOffset;\n                const header = document.querySelector('header');\n                \n                if (header) {\n                    if (currentScroll \u003e 100) {\n                        header.style.padding = '1rem 0';\n                    } else {\n                        header.style.padding = '1.5rem 0';\n                    }\n                }\n                \n                lastScroll = currentScroll;\n            });\n\n            \/\/ Smooth scroll for anchor links\n            document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n                anchor.addEventListener('click', function (e) {\n                    e.preventDefault();\n                    const target = document.querySelector(this.getAttribute('href'));\n                    if (target) {\n                        target.scrollIntoView({\n                            behavior: 'smooth',\n                            block: 'start'\n                        });\n                    }\n                });\n            });\n        } catch (error) {\n            console.error('Error initializing page scripts:', error);\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46083620634789,"sku":"8063037_16039","price":10274.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46083620667557,"sku":"8063037_16045","price":10274.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46083620700325,"sku":"8063037_15700","price":10274.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/B671A5AB-A903-4E77-951F-23DEDBD64BBC.png?v=1764349240"},{"product_id":"silhouette-no-7","title":"Silent Current — Limited Edition Abstract Noir Fine Art","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eSilent Current | Luxury Abstract Noir Art by Kasian\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A minimalist abstract fine art piece in black and silver tones. Limited edition noir artwork for collectors, hotels, penthouses, and galleries.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n    \n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #141414;\n        --accent-color: #c0c0c0;\n        --text-primary: #f5f5f5;\n        --text-secondary: #a8a8a8;\n        --divider-color: rgba(192, 192, 192, 0.2);\n    }\n    \n    html {\n        scroll-behavior: smooth;\n    }\n    \n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.7;\n        overflow-x: hidden;\n    }\n    \n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(192, 192, 192, 0.1);\n        padding: 1.5rem 5%;\n        transition: all 0.3s ease;\n    }\n    \n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n    \n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n    \n    .logo:hover {\n        color: var(--accent-color);\n    }\n    \n    nav ul {\n        display: flex;\n        list-style: none;\n        gap: 2.5rem;\n    }\n    \n    nav a {\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n        text-decoration: none;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-weight: 300;\n    }\n    \n    nav a:hover {\n        color: var(--accent-color);\n    }\n    \n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        overflow: hidden;\n    }\n    \n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at 30% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n    \n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.3; }\n        50% { opacity: 0.6; }\n    }\n    \n    .hero-content {\n        max-width: 900px;\n        text-align: center;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1.2s ease-out;\n    }\n    \n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n    \n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 5rem;\n        font-weight: 400;\n        letter-spacing: 3px;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        line-height: 1.2;\n    }\n    \n    .edition-badge {\n        display: inline-block;\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--accent-color);\n        border: 1px solid var(--accent-color);\n        padding: 0.6rem 1.5rem;\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n    \n    .tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.4rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n    \n    .cta-button {\n        display: inline-block;\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--primary-bg);\n        background: var(--accent-color);\n        padding: 1.2rem 3rem;\n        text-decoration: none;\n        transition: all 0.3s ease;\n        border: 2px solid var(--accent-color);\n        font-weight: 500;\n    }\n    \n    .cta-button:hover {\n        background: transparent;\n        color: var(--accent-color);\n        transform: translateY(-2px);\n    }\n    \n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 5%;\n        background: var(--secondary-bg);\n    }\n    \n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid rgba(192, 192, 192, 0.2);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n    \n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n    \n    \/* Description Section *\/\n    .description-section {\n        padding: 6rem 5%;\n        max-width: 900px;\n        margin: 0 auto;\n    }\n    \n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n    }\n    \n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 3rem auto;\n    }\n    \n    .description-text {\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        text-align: center;\n        margin-bottom: 2rem;\n    }\n    \n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 6rem 5%;\n        background: var(--secondary-bg);\n    }\n    \n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n    \n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        line-height: 2.2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n    \n    .backstory-text strong {\n        color: var(--text-primary);\n        font-weight: 500;\n    }\n    \n    \/* Features Grid *\/\n    .features-section {\n        padding: 6rem 5%;\n    }\n    \n    .features-grid {\n        max-width: 1200px;\n        margin: 4rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(3, 1fr);\n        gap: 3rem;\n    }\n    \n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid rgba(192, 192, 192, 0.15);\n        transition: all 0.3s ease;\n    }\n    \n    .feature-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-5px);\n    }\n    \n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-color);\n        margin-bottom: 1.5rem;\n    }\n    \n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n    \n    .feature-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Edition Details *\/\n    .edition-details {\n        padding: 6rem 5%;\n        background: var(--secondary-bg);\n    }\n    \n    .stats-grid {\n        max-width: 1200px;\n        margin: 4rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(4, 1fr);\n        gap: 2rem;\n    }\n    \n    .stat-card {\n        text-align: center;\n        padding: 2rem;\n        border-left: 2px solid var(--accent-color);\n    }\n    \n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent-color);\n        margin-bottom: 0.5rem;\n        font-weight: 300;\n    }\n    \n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 2px;\n    }\n    \n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 6rem 5%;\n    }\n    \n    .pairings-grid {\n        max-width: 1000px;\n        margin: 4rem auto 0;\n        display: grid;\n        grid-template-columns: repeat(2, 1fr);\n        gap: 3rem;\n    }\n    \n    .pairing-card {\n        border: 1px solid rgba(192, 192, 192, 0.15);\n        padding: 2.5rem;\n        transition: all 0.3s ease;\n    }\n    \n    .pairing-card:hover {\n        border-color: var(--accent-color);\n        transform: translateY(-3px);\n    }\n    \n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        color: var(--accent-color);\n        margin-bottom: 1rem;\n    }\n    \n    .pairing-description {\n        font-size: 1rem;\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Collection CTA *\/\n    .collection-cta {\n        padding: 6rem 5%;\n        background: var(--secondary-bg);\n        text-align: center;\n    }\n    \n    .collection-cta .section-title {\n        margin-bottom: 2rem;\n    }\n    \n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n    \n    \/* Investment Section *\/\n    .investment-section {\n        padding: 6rem 5%;\n    }\n    \n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .target-spaces {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-top: 2rem;\n        line-height: 2;\n    }\n    \n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 5%;\n        background: var(--secondary-bg);\n        border-top: 1px solid rgba(192, 192, 192, 0.1);\n        border-bottom: 1px solid rgba(192, 192, 192, 0.1);\n    }\n    \n    .brand-strip-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .brand-strip h3 {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n    \n    .brand-logos {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        color: var(--accent-color);\n        letter-spacing: 2px;\n    }\n    \n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        text-align: center;\n    }\n    \n    .final-cta .section-title {\n        margin-bottom: 1.5rem;\n    }\n    \n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n    \n    \/* Footer *\/\n    footer {\n        padding: 3rem 5%;\n        background: var(--secondary-bg);\n        border-top: 1px solid rgba(192, 192, 192, 0.1);\n    }\n    \n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n    \n    .footer-text {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n    }\n    \n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n    \n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n    \n    .social-links a:hover {\n        color: var(--accent-color);\n    }\n    \n    \/* Responsive Design *\/\n    @media (max-width: 968px) {\n        .hero-title {\n            font-size: 3.5rem;\n        }\n        \n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n        \n        .stats-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n        \n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n        \n        nav ul {\n            gap: 1.5rem;\n        }\n    }\n    \n    @media (max-width: 640px) {\n        header {\n            padding: 1rem 5%;\n        }\n        \n        .logo {\n            font-size: 1.2rem;\n        }\n        \n        nav ul {\n            display: none;\n        }\n        \n        .hero {\n            padding: 6rem 5% 3rem;\n        }\n        \n        .hero-title {\n            font-size: 2.5rem;\n        }\n        \n        .section-title {\n            font-size: 2rem;\n        }\n        \n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n        \n        .footer-content {\n            flex-direction: column;\n            gap: 2rem;\n            text-align: center;\n        }\n    }\n    \n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n    \n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1 class=\"hero-title\"\u003eSilent Current\u003c\/h1\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Silent%20Current\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/8_lkHS48xNk\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eA Meditation on Restraint\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp class=\"description-text\"\u003e\n        A slow movement through shadow and form. Silent Current is an abstract meditation on energy, restraint, and quiet power—created for spaces that breathe sophistication.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Story\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            \u003cstrong\u003eCurrents are rarely loud.\u003c\/strong\u003e\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Silent Current was created to embody restrained momentum—the unseen force that shapes without spectacle. Its curves reference breath, motion, and continuity. Its emptiness creates space for reflection.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This work belongs to interiors curated for balance—chosen by those who understand that energy, when refined, does not rush.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Silent Current is not an image—it is a sensation. Soft gradients of smoke-grey and black move against one another like restrained motion beneath the surface of still water. A singular, calligraphic black curve interrupts the flow, deliberate and decisive, anchoring the composition with intention rather than force.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"features-section\" id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003e\n                Only 50 prints will ever exist. Each piece is individually numbered and authenticated with a signed certificate of authenticity, ensuring exclusivity and long-term value.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003e\n                Museum-grade materials ensure 100+ year longevity. Printed with professional archival pigment inks on premium fine art substrates for exceptional tonal fidelity.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003e\n                Minimalist abstracts maintain strong demand in luxury markets. This work is positioned for galleries, collectors, and hospitality environments emphasizing refined aesthetic investment.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection class=\"edition-details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Specifications\u003c\/h2\u003e\n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eTotal Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-card fade-in\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEach Signed\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eCrescent Nocturne\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003e\n                Celestial restraint meets atmospheric calm. Together, these pieces create a dialogue of quiet power and lunar elegance—ideal for gallery walls and luxury corridors.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eGolden Ascension\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003e\n                Structured elevation balanced with fluid motion. This pairing explores the tension between stillness and momentum—perfect for curated collector installations.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp\u003e\n        Silent Current belongs to the Black \u0026amp; White Luxury Collection—a curated series of sophisticated monochrome abstracts designed for refined interiors.\n    \u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Designed for modern penthouses, boutique hotel corridors, executive offices, and gallery-caliber interiors, Silent Current operates as an atmospheric anchor. It does not overwhelm a space; it regulates it.\n        \u003c\/p\u003e\n        \u003cp class=\"target-spaces\"\u003e\n            \u003cstrong\u003eTarget Spaces:\u003c\/strong\u003e\u003cbr\u003e\n            Luxury Galleries • Private Penthouses • Boutique Hotels • Executive Offices • Museum-Grade Interiors\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cdiv class=\"brand-strip-content\"\u003e\n        \u003ch3\u003eCurated for Discerning Spaces\u003c\/h3\u003e\n        \u003cdiv class=\"brand-logos\"\u003e\n            Aman • Four Seasons • St. Regis • Ritz-Carlton Reserve\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2 class=\"section-title\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp\u003e\n        Silent Current is available for private acquisition, gallery representation, and hospitality procurement.\n    \u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Silent%20Current\" class=\"cta-button\"\u003eContact Kasian Art Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cp class=\"footer-text\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\"\u003eFacebook\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\"\u003ePinterest\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Scroll Animation Observer\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header Scroll Effect\n    let lastScroll = 0;\n    const header = document.querySelector('header');\n\n    window.addEventListener('scroll', () =\u003e {\n        const currentScroll = window.pageYOffset;\n        \n        if (currentScroll \u003e 100) {\n            header.style.padding = '1rem 5%';\n        } else {\n            header.style.padding = '1.5rem 5%';\n        }\n        \n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46083624665253,"sku":"8401057_16039","price":9364.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/17AAFBF1-AEA0-4757-ACEA-D2C14CCE8216.png?v=1764636339"},{"product_id":"the-grand-ha","title":"Ivory Silence — Limited Edition Minimalist Fashion Fine Art","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eIvory Silence | Minimalist Fashion Fine Art by Kasian\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A minimalist black and ivory fashion artwork. Limited edition fine art for luxury interiors, boutique hotels, collectors, and galleries.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #111111;\n        --accent-ivory: #e8e4dc;\n        --accent-soft: #d4cfc4;\n        --text-primary: #ffffff;\n        --text-secondary: #a0a0a0;\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        background-color: var(--bg-primary);\n        color: var(--text-primary);\n        font-family: var(--sans);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        padding: 1.5rem 5%;\n        border-bottom: 1px solid rgba(232, 228, 220, 0.1);\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    nav a:hover {\n        color: var(--accent-ivory);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 5% 4rem;\n        background: radial-gradient(ellipse at center, rgba(232, 228, 220, 0.03) 0%, var(--bg-primary) 70%);\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 700px;\n        height: 700px;\n        background: radial-gradient(circle, rgba(232, 228, 220, 0.08) 0%, transparent 70%);\n        animation: gentleBreath 6s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    @keyframes gentleBreath {\n        0%, 100% { \n            transform: translate(-50%, -50%) scale(1); \n            opacity: 0.2; \n        }\n        50% { \n            transform: translate(-50%, -50%) scale(1.1); \n            opacity: 0.35; \n        }\n    }\n\n    .hero-content {\n        text-align: center;\n        max-width: 900px;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero h1 {\n        font-family: var(--display);\n        font-size: 5rem;\n        font-weight: 300;\n        letter-spacing: 4px;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        line-height: 1.2;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.75rem 2rem;\n        border: 1px solid var(--accent-ivory);\n        color: var(--accent-ivory);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin: 1.5rem 0;\n        animation: fadeIn 1s ease-out 0.3s both;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .tagline {\n        font-family: var(--serif);\n        font-size: 1.4rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 2.5rem;\n        animation: fadeIn 1s ease-out 0.6s both;\n    }\n\n    .hero-description {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        line-height: 1.8;\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n        animation: fadeIn 1s ease-out 0.9s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-ivory);\n        color: var(--accent-ivory);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        animation: fadeIn 1s ease-out 1.2s both;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-ivory);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-primary);\n    }\n\n    \/* Section Styles *\/\n    section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: 3rem;\n        font-weight: 300;\n        text-align: center;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .section-subtitle {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        text-align: center;\n        color: var(--text-secondary);\n        font-style: italic;\n        margin-bottom: 4rem;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent-ivory);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-container {\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        max-width: 1200px;\n        margin: 0 auto;\n        border: 1px solid rgba(232, 228, 220, 0.15);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        text-align: center;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-content p {\n        font-family: var(--serif);\n        font-size: 1.25rem;\n        line-height: 2.2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: left;\n    }\n\n    .backstory-content p:first-of-type {\n        font-size: 1.5rem;\n        color: var(--accent-ivory);\n        font-style: italic;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 3rem 2rem;\n        background: var(--bg-secondary);\n        border: 1px solid rgba(232, 228, 220, 0.1);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-ivory);\n        transform: translateY(-5px);\n        box-shadow: 0 10px 40px rgba(232, 228, 220, 0.05);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent-ivory);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-card h3 {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 400;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-card p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n\n    \/* Stats Grid *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        text-align: center;\n    }\n\n    .stat-item {\n        padding: 2rem;\n        border: 1px solid rgba(232, 228, 220, 0.15);\n    }\n\n    .stat-number {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-weight: 300;\n        color: var(--accent-ivory);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-list {\n        max-width: 800px;\n        margin: 4rem auto 0;\n    }\n\n    .pairing-item {\n        margin-bottom: 2.5rem;\n        padding-bottom: 2.5rem;\n        border-bottom: 1px solid rgba(232, 228, 220, 0.1);\n    }\n\n    .pairing-item:last-child {\n        border-bottom: none;\n    }\n\n    .pairing-item h3 {\n        font-family: var(--display);\n        font-size: 1.8rem;\n        font-weight: 400;\n        color: var(--text-primary);\n        margin-bottom: 0.75rem;\n    }\n\n    .pairing-item p {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);\n        text-align: center;\n        padding: 5rem 5%;\n    }\n\n    .collection-cta h2 {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-weight: 300;\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Target Spaces *\/\n    .target-spaces {\n        text-align: center;\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .spaces-list {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        line-height: 2;\n        margin-top: 2rem;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        background: var(--bg-secondary);\n        padding: 3rem 5%;\n        text-align: center;\n        border-top: 1px solid rgba(232, 228, 220, 0.1);\n        border-bottom: 1px solid rgba(232, 228, 220, 0.1);\n    }\n\n    .brand-strip p {\n        font-size: 0.85rem;\n        color: var(--text-secondary);\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin-bottom: 1.5rem;\n    }\n\n    .brand-names {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        font-weight: 300;\n        color: var(--accent-ivory);\n        letter-spacing: 3px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 5%;\n        background: radial-gradient(ellipse at center, rgba(232, 228, 220, 0.03) 0%, transparent 70%);\n    }\n\n    .final-cta h2 {\n        font-family: var(--display);\n        font-size: 3.5rem;\n        font-weight: 300;\n        margin-bottom: 2rem;\n        line-height: 1.3;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--bg-secondary);\n        padding: 4rem 5%;\n        text-align: center;\n        border-top: 1px solid rgba(232, 228, 220, 0.1);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        margin: 2rem 0;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin: 0 1.5rem;\n        font-size: 1rem;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-ivory);\n    }\n\n    .footer-text {\n        font-size: 0.9rem;\n        color: var(--text-secondary);\n        margin-top: 2rem;\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        nav {\n            display: none;\n        }\n\n        .features-grid,\n        .stats-grid {\n            grid-template-columns: 1fr;\n        }\n\n        section {\n            padding: 4rem 5%;\n        }\n    }\n\n    \/* Scroll animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n                \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n                \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n                \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1\u003eIvory Silence\u003c\/h1\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003cp class=\"hero-description\"\u003e\n            Effortless poise rendered in quiet contrast. Ivory Silence captures feminine elegance at its most distilled—designed for interiors that honor restraint, balance, and timeless style.\n        \u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"cta-button\"\u003eRequest Private Viewing\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eExperience Ivory Silence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/6Wz2ZCkIddo\" title=\"Ivory Silence - Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-content\"\u003e\n        \u003cp\u003e\n            Ivory Silence is an homage to understatement. A sculptural feminine form sits composed and unguarded, dressed in monochrome blacks against a luminous ivory field. Her wide-brimmed hat obscures identity, transforming fashion into archetype and gesture into language. The absence of detail is intentional. What remains is refinement.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Philosophy of Silence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \n        \u003cp\u003eSilence has always been the language of refinement.\u003c\/p\u003e\n        \n        \u003cp\u003e\n            Ivory Silence was conceived as a counterpoint to excess—where femininity is defined not by display, but by certainty. The hat shields distraction. The pose holds certainty. The negative space becomes breath.\n        \u003c\/p\u003e\n        \n        \u003cp\u003e\n            Every line is deliberate. Every curve restrained. This work draws its strength not from ornament, but from certainty—an aesthetic philosophy long favored by gallery curators, couture houses, and luxury interiors worldwide.\n        \u003c\/p\u003e\n        \n        \u003cp\u003e\n            This is art chosen by those who understand that luxury is a decision, not an announcement.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle\"\u003eWhere minimalism meets permanence\u003c\/p\u003e\n    \n    \u003cdiv class=\"features-grid fade-in\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and accompanied by a certificate of authenticity, ensuring exclusivity and positioning as a collector object that transcends trend.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade materials ensure 100+ year longevity. Printed with pigment-based inks on premium fine art substrates rated for long-term preservation and collector-level presentation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eMinimalist fashion artworks maintain strong demand among high-caliber collectors, gallery curators, and luxury hospitality buyers who value timeless restraint over temporary trends.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \n    \u003cdiv class=\"stats-grid\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eGrade Quality\u003c\/div\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eVertical\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eMinimalist Form\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle\"\u003eA trilogy of restraint and power\u003c\/p\u003e\n    \n    \u003cdiv class=\"pairings-list\"\u003e\n        \u003cdiv class=\"pairing-item\"\u003e\n            \u003ch3\u003eGolden Ascension\u003c\/h3\u003e\n            \u003cp\u003eDivine elevation through architectural geometry and quiet sovereignty—where gold guides rather than dominates.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-item\"\u003e\n            \u003ch3\u003eGilded Veil\u003c\/h3\u003e\n            \u003cp\u003eSovereign mystery wrapped in gold luminosity and architectural shadow—designed for spaces that honor restraint.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp style=\"text-align: center; color: var(--text-secondary); font-style: italic; margin-top: 2rem;\"\u003e\n        Together, the trio balances softness, power, and restraint—ideal for curated collector walls, fashion houses, luxury penthouses, and hotel corridors.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eExplore the Black \u0026amp; White Collection\u003c\/h2\u003e\n    \u003cp\u003e\n        Discover more monochrome masterworks designed for interiors that value timeless elegance, architectural balance, and quiet luxury.\n    \u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"target-spaces\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned For Distinction\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp style=\"color: var(--text-secondary); margin-bottom: 2rem;\"\u003e\n        Designed for contemporary residences, boutique hotel suites, fashion-forward lobbies, and gallery-grade walls.\n    \u003c\/p\u003e\n    \u003cdiv class=\"spaces-list\"\u003e\n        Collectors • Boutique Hotels • Fashion Houses • Luxury Penthouses • Gallery Walls • Executive Offices • Contemporary Residences • Curated Hospitality Spaces • Designer Showrooms\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp\u003eCurated for the world's most distinguished properties\u003c\/p\u003e\n    \u003cdiv class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003eShe Does Not Perform.\u003cbr\u003eShe Commands Through Calm.\u003c\/h2\u003e\n    \u003cp\u003e\n        Private viewings and collector consultations available by appointment. Investment-grade documentation provided with each acquisition.\n    \u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eEmail\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-text\"\u003e\n            © 2025 Kasian Art Studio. All rights reserved.\u003cbr\u003e\n            Museum-grade limited edition fine art for luxury interiors.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -100px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e observer.observe(el));\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46083626533029,"sku":"2938761_16039","price":10674.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46083626565797,"sku":"2938761_16045","price":10674.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46083626598565,"sku":"2938761_15700","price":10674.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/D288ECA2-40CF-4C6E-B047-8BBA409CB5D2.png?v=1764277846"},{"product_id":"midnight-cathedral","title":"Nocturne Dominion — Limited Edition Gothic Noir Fine Art","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eNocturne Dominion | Gothic Noir Fine Art by Kasian\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A haunting noir cityscape under a crescent moon. Limited edition fine art for collectors, galleries, boutique hotels, and luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #111111;\n        --accent-color: #d4d4d4;\n        --accent-hover: #ffffff;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --divider: #2a2a2a;\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.8;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        border-bottom: 1px solid var(--divider);\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 3rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 3rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent-hover);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(circle at 20% 30%, rgba(212, 212, 212, 0.03) 0%, transparent 50%),\n            radial-gradient(circle at 80% 70%, rgba(212, 212, 212, 0.02) 0%, transparent 50%);\n        animation: atmosphericPulse 8s ease-in-out infinite;\n    }\n\n    @keyframes atmosphericPulse {\n        0%, 100% { opacity: 0.3; }\n        50% { opacity: 0.5; }\n    }\n\n    .crescent-moon {\n        position: absolute;\n        top: 15%;\n        right: 15%;\n        width: 100px;\n        height: 100px;\n        border-radius: 50%;\n        box-shadow: \n            -20px 0 0 0 rgba(212, 212, 212, 0.9),\n            0 0 40px rgba(212, 212, 212, 0.3),\n            0 0 80px rgba(212, 212, 212, 0.1);\n        animation: moonGlow 6s ease-in-out infinite;\n        opacity: 0.8;\n    }\n\n    @keyframes moonGlow {\n        0%, 100% { \n            box-shadow: \n                -20px 0 0 0 rgba(212, 212, 212, 0.9),\n                0 0 40px rgba(212, 212, 212, 0.3),\n                0 0 80px rgba(212, 212, 212, 0.1);\n        }\n        50% { \n            box-shadow: \n                -20px 0 0 0 rgba(212, 212, 212, 1),\n                0 0 50px rgba(212, 212, 212, 0.4),\n                0 0 100px rgba(212, 212, 212, 0.15);\n        }\n    }\n\n    .hero-content {\n        text-align: center;\n        z-index: 2;\n        max-width: 900px;\n        padding: 2rem;\n        animation: fadeInUp 1.5s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.9rem;\n        letter-spacing: 3px;\n        color: var(--accent-color);\n        margin-bottom: 1rem;\n        font-weight: 300;\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 5rem;\n        font-weight: 600;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        letter-spacing: 2px;\n    }\n\n    .hero-edition {\n        font-size: 1rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n\n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        border: 2px solid var(--accent-color);\n        color: var(--accent-color);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-color);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--primary-bg);\n        border-color: var(--accent-hover);\n    }\n\n    \/* Section Styling *\/\n    section {\n        padding: 8rem 3rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 3rem;\n        text-align: center;\n        letter-spacing: 1px;\n    }\n\n    .section-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        text-align: center;\n        margin-bottom: 4rem;\n        max-width: 800px;\n        margin-left: auto;\n        margin-right: auto;\n        line-height: 1.8;\n    }\n\n    \/* Video Section *\/\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto 4rem;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        background: var(--secondary-bg);\n        padding: 6rem 3rem;\n    }\n\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent-color);\n        margin: 3rem auto;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--primary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-content p {\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .backstory-content p:first-of-type {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        font-style: italic;\n        color: var(--accent-color);\n        margin-bottom: 2.5rem;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        background: var(--secondary-bg);\n        padding: 3rem 2rem;\n        text-align: center;\n        border: 1px solid var(--divider);\n        transition: transform 0.3s ease, border-color 0.3s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--accent-color);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-color);\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        background: var(--secondary-bg);\n        padding: 4rem;\n        border: 1px solid var(--divider);\n    }\n\n    .stat-item {\n        text-align: center;\n        padding: 2rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat-item:last-child {\n        border-right: none;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-value {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        color: var(--accent-color);\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--secondary-bg);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        background: var(--primary-bg);\n        border: 1px solid var(--divider);\n        padding: 2rem;\n        transition: transform 0.3s ease;\n    }\n\n    .pairing-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--accent-color);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--accent-color);\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);\n        padding: 6rem 3rem;\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        background: var(--primary-bg);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--secondary-bg);\n        border: 1px solid var(--divider);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n    }\n\n    \/* Luxury Brands *\/\n    .luxury-brands {\n        background: var(--secondary-bg);\n        padding: 4rem 3rem;\n        text-align: center;\n    }\n\n    .brands-strip {\n        display: flex;\n        justify-content: center;\n        align-items: center;\n        gap: 3rem;\n        flex-wrap: wrap;\n        margin-top: 2rem;\n    }\n\n    .brand-name {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        color: var(--accent-color);\n        letter-spacing: 2px;\n    }\n\n    .brand-separator {\n        color: var(--divider);\n        font-size: 1.5rem;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);\n        padding: 8rem 3rem;\n        text-align: center;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .final-cta::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at center, rgba(212, 212, 212, 0.03) 0%, transparent 70%);\n    }\n\n    .final-cta-content {\n        position: relative;\n        z-index: 2;\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        line-height: 1.2;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--secondary-bg);\n        padding: 4rem 3rem;\n        text-align: center;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 2rem;\n        margin-bottom: 2rem;\n        letter-spacing: 2px;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 1.5rem;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent-hover);\n    }\n\n    .footer-text {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav-links {\n            display: none;\n        }\n\n        .hero-title {\n            font-size: 3rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: 1fr;\n            padding: 2rem;\n        }\n\n        .stat-item {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat-item:last-child {\n            border-bottom: none;\n        }\n\n        .crescent-moon {\n            width: 60px;\n            height: 60px;\n            top: 10%;\n            right: 10%;\n        }\n    }\n\n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#artwork\"\u003eARTWORK\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#inquiry\"\u003eINQUIRE\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"crescent-moon\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"hero-subtitle\"\u003eGOTHIC NOIR\u003c\/p\u003e\n        \u003ch1 class=\"hero-title\"\u003eNocturne Dominion\u003c\/h1\u003e\n        \u003cp class=\"hero-edition\"\u003eLimited Edition of 50\u003c\/p\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eINQUIRE NOW\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection id=\"artwork\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/kZwnvSvOU4o\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description\"\u003e\n    \u003cdiv class=\"description-content\"\u003e\n        \u003cp\u003eA crescent moon presides over shadowed spires. Nocturne Dominion is a meditation on solitude, power, and silence—created for interiors that command atmosphere.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eDesigned for gallery walls, penthouses, libraries, boutique hotel suites, and moody executive spaces, Nocturne Dominion anchors a room with psychological weight and timeless gravity.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Story\u003c\/h2\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp\u003eNight was never meant to be empty.\u003c\/p\u003e\n        \u003cp\u003eNocturne Dominion was born from the idea that darkness can govern just as powerfully as light. The crescent does not illuminate—it oversees. The city does not sleep—it waits.\u003c\/p\u003e\n        \u003cp\u003eA pale crescent moon burns through charcoal skies, suspended above a looming gothic cityscape. Towers rise without detail—forms stripped to essence—allowing emotion, not architecture, to dominate. Below, water reflects only fragments, as if memory itself were unstable.\u003c\/p\u003e\n        \u003cp\u003eThis is not a landscape. It is a state of being.\u003c\/p\u003e\n        \u003cp\u003eThe composition speaks to collectors who understand quiet intensity—those drawn to works that shape mood rather than explain themselves. The grayscale depth, softened edges, and painterly texture evoke old-world nocturnes with a modern severity.\u003c\/p\u003e\n        \u003cp\u003eThis is art for spaces where silence is intentional and mood is curated with precision.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"features\" class=\"fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e🌑\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 50 prints will ever exist. Each piece is numbered and certified, ensuring exclusivity and long-term collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e⚡\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed with archival pigment inks on premium fine art substrates for enduring beauty.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e📈\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eGothic noir abstracts maintain strong demand in luxury markets. Designed for collectors, galleries, and prestigious hospitality projects.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cp class=\"stat-label\"\u003eEDITION\u003c\/p\u003e\n            \u003cp class=\"stat-value\"\u003e50 Prints\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cp class=\"stat-label\"\u003eARTIST\u003c\/p\u003e\n            \u003cp class=\"stat-value\"\u003eKasian Art Studio\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cp class=\"stat-label\"\u003eORIENTATION\u003c\/p\u003e\n            \u003cp class=\"stat-value\"\u003eVertical\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cp class=\"stat-label\"\u003eLONGEVITY\u003c\/p\u003e\n            \u003cp class=\"stat-value\"\u003e100+ Years\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"pairings fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle\"\u003eNocturne Dominion pairs beautifully with works from the Black \u0026amp; White Luxury Collection, forming a cohesive noir narrative.\u003c\/p\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eCrescent Nocturne\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA companion piece exploring celestial restraint and the quiet sovereignty of night—ideal for creating atmospheric gallery installations.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Current\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eSubdued motion meets architectural stillness, completing a noir trilogy that explores sovereignty, shadow, and timeless gravity.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection id=\"collection\" class=\"collection-cta fade-in\"\u003e\n    \u003ch2\u003eExplore the Black \u0026amp; White Luxury Collection\u003c\/h2\u003e\n    \u003cp\u003eDiscover a curated selection of gothic noir and atmospheric works designed for collectors who value mood, restraint, and timeless elegance.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eVIEW COLLECTION\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment fade-in\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned For\u003c\/h2\u003e\n    \u003cdiv class=\"target-spaces\"\u003e\n        \u003cspan class=\"space-tag\"\u003eLUXURY GALLERIES\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePENTHOUSES\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eBOUTIQUE HOTELS\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePRIVATE LIBRARIES\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eEXECUTIVE OFFICES\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eMOODY INTERIORS\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003cp style=\"font-size: 0.9rem; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 1rem;\"\u003eTRUSTED BY\u003c\/p\u003e\n    \u003cdiv class=\"brands-strip\"\u003e\n        \u003cspan class=\"brand-name\"\u003eAman\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan class=\"brand-name\"\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan class=\"brand-name\"\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan class=\"brand-name\"\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection id=\"inquiry\" class=\"final-cta\"\u003e\n    \u003cdiv class=\"final-cta-content\"\u003e\n        \u003ch2\u003eSilence Ascends.\u003cbr\u003eDarkness Governs.\u003c\/h2\u003e\n        \u003cp\u003eInquire about Nocturne Dominion and discover how this limited edition gothic noir artwork can transform your space with atmospheric power and timeless sophistication.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eCONTACT STUDIO\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-text\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n        \u003cp class=\"footer-text\" style=\"margin-top: 1rem;\"\u003eMuseum-Grade Fine Art • Limited Editions • Luxury Interiors\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -100px 0px'\n    };\n\n    const observer = new IntersectionObserver(function(entries) {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(element =\u003e {\n        observer.observe(element);\n    });\n\n    \/\/ Parallax effect for hero\n    window.addEventListener('scroll', function() {\n        const scrolled = window.pageYOffset;\n        const hero = document.querySelector('.hero');\n        if (hero) {\n            hero.style.transform = `translateY(${scrolled * 0.5}px)`;\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46083633578149,"sku":"5200470_16039","price":11306.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46083633610917,"sku":"5200470_16045","price":11306.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46083633643685,"sku":"5200470_15700","price":11306.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/91E46381-CB71-4145-9AC0-84C1D64DEF28.png?v=1763646899"},{"product_id":"soulbound","title":"Soulbound” — Limited Edition Black \u0026 White Fine Art","description":"\u003cbody\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eVow in Stillness | Luxury Monochrome Fine Art for Elite Interiors\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade monochrome fine art print capturing intimacy and strength. Limited edition art for penthouses, yachts, and hotels.\"\u003e\n    \n    \u003c!-- Fonts --\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n    \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n    \n    \u003cstyle\u003e\n        :root {\n            --bg-dark: #0a0a0a;\n            --bg-darker: #050505;\n            --text-light: #f5f5f5;\n            --text-muted: #a0a0a0;\n            --accent: #d4d4d4;\n            --accent-hover: #e8e8e8;\n            --accent-subtle: rgba(212, 212, 212, 0.15);\n            --divider: rgba(212, 212, 212, 0.2);\n        }\n        \n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n        \n        html {\n            scroll-behavior: smooth;\n        }\n        \n        body {\n            font-family: 'Montserrat', sans-serif;\n            background-color: var(--bg-dark);\n            color: var(--text-light);\n            line-height: 1.8;\n            overflow-x: hidden;\n        }\n        \n        \/* Header *\/\n        header {\n            position: fixed;\n            top: 0;\n            left: 0;\n            right: 0;\n            z-index: 1000;\n            background: rgba(10, 10, 10, 0.95);\n            backdrop-filter: blur(10px);\n            border-bottom: 1px solid rgba(212, 212, 212, 0.1);\n            transition: all 0.3s ease;\n        }\n        \n        header.scrolled {\n            background: rgba(10, 10, 10, 0.98);\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);\n        }\n        \n        .header-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            padding: 1.5rem 3rem;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n        \n        .logo {\n            font-family: 'Playfair Display', serif;\n            font-size: 1.5rem;\n            font-weight: 600;\n            letter-spacing: 2px;\n            color: var(--text-light);\n            text-decoration: none;\n            transition: color 0.3s ease;\n        }\n        \n        .logo:hover {\n            color: var(--accent);\n        }\n        \n        nav ul {\n            display: flex;\n            list-style: none;\n            gap: 2.5rem;\n        }\n        \n        nav a {\n            color: var(--text-muted);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 1px;\n            text-transform: uppercase;\n            transition: color 0.3s ease;\n            font-weight: 400;\n        }\n        \n        nav a:hover {\n            color: var(--accent);\n        }\n        \n        \/* Hero Section *\/\n        .hero {\n            min-height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            position: relative;\n            padding: 8rem 3rem 4rem;\n            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);\n            overflow: hidden;\n        }\n        \n        .hero::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(ellipse at center, rgba(212, 212, 212, 0.03) 0%, transparent 70%);\n            animation: quietPulse 12s ease-in-out infinite;\n        }\n        \n        .hero::after {\n            content: '';\n            position: absolute;\n            top: -50%;\n            left: -50%;\n            width: 200%;\n            height: 200%;\n            background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 50%);\n            animation: slowRotate 60s linear infinite;\n            pointer-events: none;\n            opacity: 0.3;\n        }\n        \n        @keyframes quietPulse {\n            0%, 100% { opacity: 0.2; }\n            50% { opacity: 0.4; }\n        }\n        \n        @keyframes slowRotate {\n            from { transform: rotate(0deg); }\n            to { transform: rotate(360deg); }\n        }\n        \n        .hero-content {\n            max-width: 900px;\n            text-align: center;\n            position: relative;\n            z-index: 2;\n            animation: fadeInUp 1.2s ease-out;\n        }\n        \n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(40px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n        \n        .edition-label {\n            font-size: 0.85rem;\n            letter-spacing: 3px;\n            text-transform: uppercase;\n            color: var(--accent);\n            margin-bottom: 1.5rem;\n            font-weight: 500;\n        }\n        \n        .hero h1 {\n            font-family: 'Playfair Display', serif;\n            font-size: 4.5rem;\n            font-weight: 600;\n            line-height: 1.2;\n            margin-bottom: 1.5rem;\n            letter-spacing: 1px;\n            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 100%);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n        }\n        \n        .tagline {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.4rem;\n            font-weight: 300;\n            font-style: italic;\n            color: var(--text-muted);\n            margin-bottom: 3rem;\n            letter-spacing: 2px;\n        }\n        \n        .cta-button {\n            display: inline-block;\n            padding: 1rem 3rem;\n            background: transparent;\n            color: var(--accent);\n            border: 2px solid var(--accent);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 2px;\n            text-transform: uppercase;\n            transition: all 0.4s ease;\n            position: relative;\n            overflow: hidden;\n            font-weight: 500;\n        }\n        \n        .cta-button::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: -100%;\n            width: 100%;\n            height: 100%;\n            background: var(--accent);\n            transition: left 0.4s ease;\n            z-index: -1;\n        }\n        \n        .cta-button:hover {\n            color: var(--bg-dark);\n        }\n        \n        .cta-button:hover::before {\n            left: 0;\n        }\n        \n        \/* Section Styles *\/\n        section {\n            padding: 6rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n        \n        .section-title {\n            font-family: 'Playfair Display', serif;\n            font-size: 2.8rem;\n            text-align: center;\n            margin-bottom: 1rem;\n            font-weight: 600;\n            letter-spacing: 1px;\n        }\n        \n        .section-subtitle {\n            text-align: center;\n            color: var(--text-muted);\n            font-size: 1.1rem;\n            margin-bottom: 4rem;\n            font-weight: 300;\n        }\n        \n        .divider {\n            width: 80px;\n            height: 1px;\n            background: linear-gradient(90deg, transparent, var(--accent), transparent);\n            margin: 3rem auto;\n        }\n        \n        \/* Video Section *\/\n        .video-section {\n            background: var(--bg-darker);\n            padding: 6rem 3rem;\n        }\n        \n        .video-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            position: relative;\n            padding-bottom: 56.25%;\n            height: 0;\n            overflow: hidden;\n            border-radius: 4px;\n            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n            border: 1px solid var(--divider);\n        }\n        \n        .video-container iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            border: none;\n        }\n        \n        \/* Description Section *\/\n        .description {\n            max-width: 900px;\n            margin: 0 auto;\n            text-align: center;\n        }\n        \n        .description p {\n            font-size: 1.15rem;\n            line-height: 2;\n            color: var(--text-muted);\n            margin-bottom: 1.5rem;\n        }\n        \n        \/* Backstory Section *\/\n        .backstory {\n            background: var(--bg-darker);\n            position: relative;\n        }\n        \n        .backstory::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(ellipse at center, var(--accent-subtle) 0%, transparent 60%);\n            opacity: 0.3;\n            pointer-events: none;\n        }\n        \n        .backstory-content {\n            max-width: 900px;\n            margin: 0 auto;\n            position: relative;\n            z-index: 2;\n        }\n        \n        .backstory-content p {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.3rem;\n            line-height: 2.2;\n            color: var(--text-light);\n            margin-bottom: 2rem;\n            text-align: left;\n        }\n        \n        .backstory-content p:first-of-type::first-letter {\n            font-size: 3.5rem;\n            float: left;\n            line-height: 1;\n            margin: 0.1rem 0.5rem 0 0;\n            color: var(--accent);\n            font-weight: 600;\n        }\n        \n        \/* Features Grid *\/\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 3rem;\n            margin-top: 4rem;\n        }\n        \n        .feature-card {\n            text-align: center;\n            padding: 2.5rem 2rem;\n            background: var(--accent-subtle);\n            border: 1px solid var(--divider);\n            transition: all 0.4s ease;\n            position: relative;\n            overflow: hidden;\n        }\n        \n        .feature-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: -100%;\n            width: 100%;\n            height: 100%;\n            background: linear-gradient(90deg, transparent, rgba(212, 212, 212, 0.1), transparent);\n            transition: left 0.6s ease;\n        }\n        \n        .feature-card:hover::before {\n            left: 100%;\n        }\n        \n        .feature-card:hover {\n            border-color: var(--accent);\n            transform: translateY(-5px);\n            box-shadow: 0 10px 30px rgba(212, 212, 212, 0.1);\n        }\n        \n        .feature-icon {\n            font-size: 2.5rem;\n            color: var(--accent);\n            margin-bottom: 1.5rem;\n        }\n        \n        .feature-card h3 {\n            font-family: 'Playfair Display', serif;\n            font-size: 1.5rem;\n            margin-bottom: 1rem;\n            color: var(--text-light);\n        }\n        \n        .feature-card p {\n            color: var(--text-muted);\n            line-height: 1.8;\n            font-size: 0.95rem;\n        }\n        \n        \/* Edition Details *\/\n        .edition-stats {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n            gap: 2rem;\n            margin-top: 4rem;\n            padding: 3rem;\n            background: var(--accent-subtle);\n            border: 1px solid var(--divider);\n        }\n        \n        .stat {\n            text-align: center;\n            padding: 1.5rem;\n            border-right: 1px solid var(--divider);\n        }\n        \n        .stat:last-child {\n            border-right: none;\n        }\n        \n        .stat-number {\n            font-family: 'Playfair Display', serif;\n            font-size: 2.5rem;\n            color: var(--accent);\n            font-weight: 600;\n            margin-bottom: 0.5rem;\n        }\n        \n        .stat-label {\n            font-size: 0.85rem;\n            letter-spacing: 2px;\n            text-transform: uppercase;\n            color: var(--text-muted);\n        }\n        \n        \/* Pairings Section *\/\n        .pairings {\n            background: var(--bg-darker);\n        }\n        \n        .pairings-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n            gap: 3rem;\n            margin-top: 4rem;\n        }\n        \n        .pairing-card {\n            background: var(--accent-subtle);\n            border: 1px solid var(--divider);\n            padding: 2.5rem;\n            transition: all 0.4s ease;\n        }\n        \n        .pairing-card:hover {\n            border-color: var(--accent);\n            transform: translateY(-5px);\n            box-shadow: 0 10px 30px rgba(212, 212, 212, 0.1);\n        }\n        \n        .pairing-card h3 {\n            font-family: 'Playfair Display', serif;\n            font-size: 1.6rem;\n            margin-bottom: 1rem;\n            color: var(--accent);\n        }\n        \n        .pairing-card p {\n            color: var(--text-muted);\n            line-height: 1.8;\n        }\n        \n        \/* Collection CTA *\/\n        .collection-cta {\n            text-align: center;\n            padding: 5rem 3rem;\n            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);\n            position: relative;\n        }\n        \n        .collection-cta::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(ellipse at center, var(--accent-subtle) 0%, transparent 60%);\n            opacity: 0.3;\n            pointer-events: none;\n        }\n        \n        .collection-cta h2 {\n            font-family: 'Playfair Display', serif;\n            font-size: 2.5rem;\n            margin-bottom: 1.5rem;\n            position: relative;\n            z-index: 2;\n        }\n        \n        .collection-cta p {\n            font-size: 1.1rem;\n            color: var(--text-muted);\n            margin-bottom: 2.5rem;\n            position: relative;\n            z-index: 2;\n        }\n        \n        \/* Investment Section *\/\n        .investment {\n            background: var(--bg-darker);\n        }\n        \n        .spaces-list {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 2rem;\n            margin-top: 3rem;\n        }\n        \n        .space-item {\n            padding: 1.5rem;\n            background: var(--accent-subtle);\n            border-left: 3px solid var(--accent);\n            transition: all 0.3s ease;\n        }\n        \n        .space-item:hover {\n            background: rgba(212, 212, 212, 0.2);\n            transform: translateX(10px);\n            box-shadow: -5px 0 20px rgba(212, 212, 212, 0.1);\n        }\n        \n        .space-item h4 {\n            font-family: 'Playfair Display', serif;\n            font-size: 1.2rem;\n            margin-bottom: 0.5rem;\n            color: var(--text-light);\n        }\n        \n        .space-item p {\n            font-size: 0.9rem;\n            color: var(--text-muted);\n        }\n        \n        \/* Luxury Brands Strip *\/\n        .luxury-brands {\n            padding: 4rem 3rem;\n            background: var(--bg-dark);\n            text-align: center;\n        }\n        \n        .luxury-brands p {\n            font-size: 0.85rem;\n            letter-spacing: 2px;\n            text-transform: uppercase;\n            color: var(--text-muted);\n            margin-bottom: 2rem;\n        }\n        \n        .brands-list {\n            font-family: 'Playfair Display', serif;\n            font-size: 1.5rem;\n            color: var(--accent);\n            letter-spacing: 3px;\n        }\n        \n        \/* Final CTA *\/\n        .final-cta {\n            padding: 8rem 3rem;\n            text-align: center;\n            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);\n            position: relative;\n        }\n        \n        .final-cta::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(ellipse at center, var(--accent-subtle) 0%, transparent 70%);\n            opacity: 0.2;\n            pointer-events: none;\n        }\n        \n        .final-cta h2 {\n            font-family: 'Playfair Display', serif;\n            font-size: 3rem;\n            margin-bottom: 2rem;\n            position: relative;\n            z-index: 2;\n        }\n        \n        .final-cta p {\n            font-size: 1.2rem;\n            color: var(--text-muted);\n            margin-bottom: 1rem;\n            max-width: 700px;\n            margin-left: auto;\n            margin-right: auto;\n            position: relative;\n            z-index: 2;\n        }\n        \n        .contact-email {\n            color: var(--accent);\n            text-decoration: none;\n            font-size: 1.1rem;\n            letter-spacing: 1px;\n            transition: color 0.3s ease;\n        }\n        \n        .contact-email:hover {\n            color: var(--accent-hover);\n        }\n        \n        \/* Footer *\/\n        footer {\n            background: var(--bg-darker);\n            padding: 3rem;\n            text-align: center;\n            border-top: 1px solid var(--divider);\n        }\n        \n        .footer-content {\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n        \n        .social-links {\n            display: flex;\n            justify-content: center;\n            gap: 2rem;\n            margin-bottom: 2rem;\n        }\n        \n        .social-links a {\n            color: var(--text-muted);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 1px;\n            text-transform: uppercase;\n            transition: color 0.3s ease;\n        }\n        \n        .social-links a:hover {\n            color: var(--accent);\n        }\n        \n        .copyright {\n            font-size: 0.85rem;\n            color: var(--text-muted);\n            letter-spacing: 1px;\n        }\n        \n        \/* Scroll Animations *\/\n        .fade-in {\n            opacity: 0;\n            transform: translateY(30px);\n            transition: opacity 0.8s ease, transform 0.8s ease;\n        }\n        \n        .fade-in.visible {\n            opacity: 1;\n            transform: translateY(0);\n        }\n        \n        \/* Responsive Design *\/\n        @media (max-width: 768px) {\n            .header-content {\n                padding: 1rem 1.5rem;\n            }\n            \n            nav ul {\n                gap: 1.5rem;\n            }\n            \n            nav a {\n                font-size: 0.8rem;\n            }\n            \n            .hero h1 {\n                font-size: 2.5rem;\n            }\n            \n            .tagline {\n                font-size: 1.1rem;\n            }\n            \n            section {\n                padding: 4rem 1.5rem;\n            }\n            \n            .section-title {\n                font-size: 2rem;\n            }\n            \n            .features-grid,\n            .pairings-grid,\n            .spaces-list {\n                grid-template-columns: 1fr;\n            }\n            \n            .stat {\n                border-right: none;\n                border-bottom: 1px solid var(--divider);\n            }\n            \n            .stat:last-child {\n                border-bottom: none;\n            }\n        }\n    \u003c\/style\u003e\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav\u003e\n                \u003cul\u003e\n                    \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#inquiry\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n    \u003c!-- Hero Section --\u003e\n    \u003csection class=\"hero\" id=\"artwork\"\u003e\n        \u003cdiv class=\"hero-content\"\u003e\n            \u003cp class=\"edition-label\"\u003eLimited Edition of 50\u003c\/p\u003e\n            \u003ch1\u003eVow in Stillness\u003c\/h1\u003e\n            \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n            \u003ca href=\"#inquiry\" class=\"cta-button\"\u003eInquire About This Piece\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Video Section --\u003e\n    \u003cdiv class=\"video-section\"\u003e\n        \u003cdiv class=\"video-container\"\u003e\n            \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/t33NsdVB1gU?si=mii1JUm_d2uz5SlH\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n            \u003c\/iframe\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Description Section --\u003e\n    \u003csection class=\"description\"\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eA powerful study of closeness and quiet strength, where intimacy becomes architecture.\u003c\/p\u003e\n        \u003cp\u003eVow in Stillness captures devotion in its most restrained, elemental form. Two figures fold inward toward one another, strength softened by trust, power grounded in proximity. This work is not an accent—it is an anchor.\u003c\/p\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Backstory Section --\u003e\n    \u003csection class=\"backstory\" id=\"story\"\u003e\n        \u003ch2 class=\"section-title\"\u003eIntimacy as Sanctuary\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"backstory-content fade-in\"\u003e\n            \u003cp\u003eThe world outside is vast. Inside, everything narrows.\u003c\/p\u003e\n            \u003cp\u003eIn Vow in Stillness, intimacy is not performed—it is protected. The figures lean inward, forming a quiet sanctuary against the chaos beyond. Strength is present, but softened. Power exists, but unspoken.\u003c\/p\u003e\n            \u003cp\u003eThis piece belongs in spaces where silence is intentional and luxury is measured by what is left untouched.\u003c\/p\u003e\n            \u003cp\u003eCollectors acquire Vow in Stillness as a statement of sovereignty, intimacy, and emotional refinement.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Features Section --\u003e\n    \u003csection id=\"details\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cp class=\"section-subtitle\"\u003eSculptural monochrome for ultra-refined environments\u003c\/p\u003e\n        \u003cdiv class=\"features-grid\"\u003e\n            \u003cdiv class=\"feature-card fade-in\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n                \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n                \u003cp\u003eOnly 50 prints will ever exist. Each piece is individually numbered and authenticated, ensuring exclusivity for elite private and hospitality collections.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"feature-card fade-in\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n                \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n                \u003cp\u003eMuseum-grade materials preserve sculptural tonal integrity and depth, meeting the preservation standards required for superyachts, penthouses, and collector galleries.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"feature-card fade-in\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n                \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n                \u003cp\u003eMonochrome fine art maintains enduring demand in ultra-luxury interiors where intimacy, restraint, and emotional sophistication define the space.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Edition Details --\u003e\n    \u003csection\u003e\n        \u003cdiv class=\"edition-stats\"\u003e\n            \u003cdiv class=\"stat\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat\"\u003e\n                \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eGrade Quality\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat\"\u003e\n                \u003cdiv class=\"stat-number\"\u003eLifetime\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eArchival Standard\u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Curated Pairings --\u003e\n    \u003csection class=\"pairings\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cp class=\"section-subtitle\"\u003eVow in Stillness pairs seamlessly with complementary works\u003c\/p\u003e\n        \u003cdiv class=\"pairings-grid\"\u003e\n            \u003cdiv class=\"pairing-card fade-in\"\u003e\n                \u003ch3\u003eMinimalist Abstract\u003c\/h3\u003e\n                \u003cp\u003eBalance human intimacy with spatial calm through minimal abstracts in neutral tones. Ideal for creating visual dialogue between emotion and architecture in hospitality installations or private galleries.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"pairing-card fade-in\"\u003e\n                \u003ch3\u003eArchitectural Black \u0026amp; White\u003c\/h3\u003e\n                \u003cp\u003ePair with structural photography or geometric compositions to establish a cohesive narrative of quiet luxury, restraint, and timeless elegance throughout ultra-refined spaces.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Collection CTA --\u003e\n    \u003csection class=\"collection-cta\" id=\"collection\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover other works that embody the same commitment to intimacy, restraint, and sculptural elegance.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/all\" class=\"cta-button\"\u003eView All Artworks\u003c\/a\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Investment Positioning --\u003e\n    \u003csection class=\"investment\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cp class=\"section-subtitle\"\u003eDesigned for ultra-refined environments where silence speaks\u003c\/p\u003e\n        \u003cdiv class=\"spaces-list\"\u003e\n            \u003cdiv class=\"space-item fade-in\"\u003e\n                \u003ch4\u003eSuperyacht Private Salons\u003c\/h4\u003e\n                \u003cp\u003eOwner suites and intimate spaces where luxury is measured by restraint\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"space-item fade-in\"\u003e\n                \u003ch4\u003eLuxury Penthouse Living Rooms\u003c\/h4\u003e\n                \u003cp\u003eHigh-rise residences where emotional architecture defines the interior\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"space-item fade-in\"\u003e\n                \u003ch4\u003eBoutique Hotel Presidential Suites\u003c\/h4\u003e\n                \u003cp\u003eUltra-luxury hospitality spaces curated for unforgettable experiences\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"space-item fade-in\"\u003e\n                \u003ch4\u003eCollector-Grade Gallery Walls\u003c\/h4\u003e\n                \u003cp\u003ePrivate galleries where intimacy as strength becomes the centerpiece\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Luxury Brands Strip --\u003e\n    \u003cdiv class=\"luxury-brands\"\u003e\n        \u003cp\u003ePositioned for World-Class Hospitality\u003c\/p\u003e\n        \u003cdiv class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Final CTA --\u003e\n    \u003csection class=\"final-cta\" id=\"inquiry\"\u003e\n        \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp\u003eVow in Stillness is available to serious collectors and design professionals.\u003c\/p\u003e\n        \u003cp\u003eFor pricing, provenance documentation, and acquisition details:\u003c\/p\u003e\n        \u003cp\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"contact-email\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\u003c\/p\u003e\n        \u003cdiv style=\"margin-top: 3rem;\"\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003eContact Studio\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Footer --\u003e\n    \u003cfooter\u003e\n        \u003cdiv class=\"footer-content\"\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\"\u003eWebsite\u003c\/a\u003e\n            \u003c\/div\u003e\n            \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/footer\u003e\n\n    \u003cscript\u003e\n        \/\/ Header scroll effect\n        const header = document.querySelector('header');\n        window.addEventListener('scroll', () =\u003e {\n            if (window.scrollY \u003e 100) {\n                header.classList.add('scrolled');\n            } else {\n                header.classList.remove('scrolled');\n            }\n        });\n\n        \/\/ Fade-in animation on scroll\n        const fadeElements = document.querySelectorAll('.fade-in');\n        const fadeObserver = new IntersectionObserver((entries) =\u003e {\n            entries.forEach(entry =\u003e {\n                if (entry.isIntersecting) {\n                    entry.target.classList.add('visible');\n                }\n            });\n        }, { threshold: 0.1 });\n\n        fadeElements.forEach(element =\u003e {\n            fadeObserver.observe(element);\n        });\n\n        \/\/ Smooth scroll for navigation\n        document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n            anchor.addEventListener('click', function (e) {\n                e.preventDefault();\n                const target = document.querySelector(this.getAttribute('href'));\n                if (target) {\n                    target.scrollIntoView({ behavior: 'smooth', block: 'start' });\n                }\n            });\n        });\n    \u003c\/script\u003e\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46083643605157,"sku":"7831746_16039","price":10304.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46083643637925,"sku":"7831746_16045","price":10304.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46083643670693,"sku":"7831746_15700","price":10304.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_3109.png?v=1763646853"},{"product_id":"veil-of-shadows","title":"OBSIDIAN DRIFT— Luxury Black \u0026 Grey Atmospheric Abstract Art","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Black Abstract Art | Obsidian Drift — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade black abstract artwork exploring depth, movement, and restraint for luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-secondary: #1a1a1a;\n        --bg-charcoal: #151515;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #8a8a8a;\n        --accent-hover: #a0a0a0;\n        --divider: rgba(138, 138, 138, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* HEADER *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(138, 138, 138, 0.1);\n        padding: 1.5rem 5%;\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--accent);\n        text-decoration: none;\n        transition: all 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-hover);\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n        text-transform: uppercase;\n    }\n\n    nav a:hover {\n        color: var(--accent);\n    }\n\n    \/* HERO SECTION *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        padding: 8rem 5% 4rem;\n        position: relative;\n        overflow: hidden;\n        background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);\n    }\n\n    \/* Smoke wisp animation - diagonal sweeps *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: -20%;\n        right: -10%;\n        width: 60%;\n        height: 140%;\n        background: linear-gradient(135deg, \n            transparent 0%, \n            rgba(138, 138, 138, 0.03) 30%, \n            rgba(138, 138, 138, 0.08) 50%, \n            rgba(138, 138, 138, 0.03) 70%, \n            transparent 100%);\n        transform: rotate(-25deg);\n        animation: smokeDrift 15s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    @keyframes smokeDrift {\n        0%, 100% { \n            transform: translateX(0) translateY(0) rotate(-25deg);\n            opacity: 0.4;\n        }\n        50% { \n            transform: translateX(-80px) translateY(60px) rotate(-22deg);\n            opacity: 0.7;\n        }\n    }\n\n    \/* Secondary smoke layer *\/\n    .hero::after {\n        content: '';\n        position: absolute;\n        bottom: -20%;\n        left: -10%;\n        width: 50%;\n        height: 120%;\n        background: linear-gradient(-45deg, \n            transparent 0%, \n            rgba(138, 138, 138, 0.02) 30%, \n            rgba(138, 138, 138, 0.06) 50%, \n            rgba(138, 138, 138, 0.02) 70%, \n            transparent 100%);\n        transform: rotate(20deg);\n        animation: smokeCounterDrift 18s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    @keyframes smokeCounterDrift {\n        0%, 100% { \n            transform: translateX(0) translateY(0) rotate(20deg);\n            opacity: 0.3;\n        }\n        50% { \n            transform: translateX(60px) translateY(-40px) rotate(23deg);\n            opacity: 0.6;\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.9rem;\n        letter-spacing: 4px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 4.5rem;\n        font-weight: 400;\n        line-height: 1.2;\n        margin-bottom: 1.5rem;\n        color: var(--text-primary);\n        letter-spacing: 3px;\n    }\n\n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--accent);\n        border: 1px solid var(--accent);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        font-weight: 400;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n    }\n\n    \/* SECTION STYLES *\/\n    section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n        letter-spacing: 1px;\n    }\n\n    .section-subtitle {\n        text-align: center;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        max-width: 700px;\n        margin: 0 auto 4rem;\n        line-height: 1.8;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent);\n        margin: 4rem auto;\n    }\n\n    \/* VIDEO SECTION *\/\n    .video-section {\n        background: var(--bg-charcoal);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* DESCRIPTION SECTION *\/\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .description-content p {\n        margin-bottom: 1.5rem;\n    }\n\n    .description-highlight {\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    \/* BACKSTORY SECTION *\/\n    .backstory-section {\n        background: var(--bg-charcoal);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        line-height: 2.8;\n        color: var(--text-secondary);\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    \/* FEATURES GRID *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-charcoal);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-10px);\n        border-color: var(--accent);\n        box-shadow: 0 20px 40px rgba(138, 138, 138, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n        line-height: 1.8;\n    }\n\n    \/* EDITION DETAILS *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--bg-charcoal);\n        border: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 2rem 1rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat:last-child {\n        border-right: none;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n        font-weight: 400;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n    }\n\n    \/* PAIRINGS SECTION *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-charcoal);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1rem;\n    }\n\n    \/* COLLECTION CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-charcoal) 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 5%;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* INVESTMENT SECTION *\/\n    .investment-section {\n        background: var(--bg-dark);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--bg-charcoal);\n        border: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent);\n        color: var(--accent);\n    }\n\n    \/* LUXURY BRANDS *\/\n    .luxury-brands {\n        background: var(--bg-charcoal);\n        padding: 4rem 5%;\n        text-align: center;\n    }\n\n    .luxury-brands h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-secondary);\n        font-weight: 400;\n    }\n\n    .brand-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        color: var(--accent);\n        letter-spacing: 3px;\n    }\n\n    \/* FINAL CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        text-align: center;\n        background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-charcoal) 100%);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        font-weight: 400;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* FOOTER *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 4rem 5%;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n    }\n\n    .footer-section h4 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n        font-weight: 400;\n    }\n\n    .footer-section p,\n    .footer-section a {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        line-height: 2;\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .footer-section a:hover {\n        color: var(--accent);\n    }\n\n    .social-links {\n        display: flex;\n        gap: 1.5rem;\n        margin-top: 1rem;\n    }\n\n    .social-links a {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        transition: all 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent);\n        transform: translateY(-3px);\n    }\n\n    .copyright {\n        text-align: center;\n        margin-top: 3rem;\n        padding-top: 2rem;\n        border-top: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n    }\n\n    \/* RESPONSIVE *\/\n    @media (max-width: 768px) {\n        .hero-title {\n            font-size: 3rem;\n        }\n\n        .hero-tagline {\n            font-size: 1.3rem;\n        }\n\n        .section-title {\n            font-size: 2.5rem;\n        }\n\n        nav a {\n            margin-left: 1.5rem;\n            font-size: 0.8rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .stat {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat:last-child {\n            border-bottom: none;\n        }\n    }\n\n    \/* SCROLL ANIMATIONS *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- HEADER --\u003e\n\u003cheader\u003e\n    \u003cdiv class=\"header-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cnav\u003e\n            \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n            \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/div\u003e\n\u003c\/header\u003e\n\n\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 20\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003eObsidian Drift\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eThe Weight of Quiet\u003c\/p\u003e\n        \u003cp class=\"section-subtitle\"\u003eDarkness, refined into movement.\u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"cta-button\"\u003eInquire About This Piece\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- VIDEO SECTION --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/e8EgnWMQcfg?si=eWPk-ht_IQo9P74h\" title=\"Obsidian Drift\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- DESCRIPTION SECTION --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDepth Without Subject\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eObsidian Drift is an exploration of depth without subject\u003c\/span\u003e—a meditation on shadow, motion, and restraint. Layered charcoal tones sweep across the surface like controlled breath, creating a sense of slow movement suspended in time.\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eThis piece does not demand attention. It commands presence.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003eDesigned for collectors and curators who understand the power of absence, Obsidian Drift elevates modern interiors through its tonal complexity and quiet authority. It belongs in spaces where silence is intentional: \u003cspan class=\"description-highlight\"\u003eexecutive suites, Aman-style hotel corridors, private galleries, penthouses,\u003c\/span\u003e and architectural residences defined by discipline and refinement.\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eThis is not trend art.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eThis is timeless minimalism.\u003c\/span\u003e\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BACKSTORY SECTION --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eWhere Authority Begins\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp\u003eWhere light ends,\u003c\/p\u003e\n        \u003cp\u003eauthority begins.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- MUSEUM-GRADE FEATURES --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 20 prints will ever exist. Each piece is numbered and authenticated, ensuring rarity and long-term value for collectors who appreciate atmospheric minimalism.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Archival pigment inks deliver deep velvety blacks and clean tonal gradients essential for monochrome abstracts.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eDramatic black abstracts maintain strong demand in luxury markets. This piece is designed for private collections, galleries, and high-end hospitality environments.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- EDITION DETAILS --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e20\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCertificate Included\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- CURATED PAIRINGS --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eTogether, these works form a curated silence collection for luxury architectural environments.\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eExhale\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA Study in Absolute Restraint — A minimalist counterpoint exploring singular gesture and negative space. Together with Obsidian Drift, these pieces create a dialogue between movement and stillness.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eQuiet Mass\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMonochrome Authority Series — An exploration of weight and shadow in abstract form. Paired with Obsidian Drift, these works establish atmospheric depth for sophisticated interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- COLLECTION CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp\u003eDiscover more works from the Abstract Atmospheric Collection—pieces that celebrate depth, movement, and the quiet power of darkness.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/abstract-atmospheric-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- INVESTMENT SECTION --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Intentional Spaces\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eThis artwork is created for luxury interiors that value depth, restraint, and architectural presence over ornamentation.\u003c\/div\u003e\n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Suites\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eHotel Corridors\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Galleries\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePenthouse Living\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoardrooms\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eArchitectural Foyers\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- LUXURY BRANDS --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3\u003eTrusted by Leading Luxury Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FINAL CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003eBegin Your Acquisition\u003c\/h2\u003e\n    \u003cp\u003eFor pricing, framing consultations for dramatic abstracts, or installation guidance, contact our curatorial team.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- FOOTER --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eKasian Art Studio\u003c\/h4\u003e\n            \u003cp\u003eMuseum-grade fine art for luxury interiors, private collectors, and hospitality brands.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eQuick Links\u003c\/h4\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eAll Collections\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout the Artist\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eConnect\u003c\/h4\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"copyright\"\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- SCROLL ANIMATIONS SCRIPT --\u003e\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46084927127717,"sku":"4713076_16039","price":11314.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46084927160485,"sku":"4713076_16045","price":11314.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46084927193253,"sku":"4713076_15700","price":11314.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_3657.png?v=1763560567"},{"product_id":"eternal-embrace","title":"Eternal Embrace • Collector’s Edition Fine Art by Kasian","description":"\u003cbody\u003e\n\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eEternal Embrace — Luxury Figurative Black \u0026amp; White Fine Art Print | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A cinematic, intimate black-and-white figurative artwork crafted as a museum-grade limited edition for luxury homes, penthouses, hotels, and collectors.\"\u003e\n    \u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n```\n    body {\n        font-family: 'Cormorant Garamond', 'Playfair Display', serif;\n        background: #0a0a0a;\n        color: #e8e3d8;\n        overflow-x: hidden;\n        line-height: 1.7;\n    }\n\n    .header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        padding: 2rem 5%;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        z-index: 1000;\n        background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);\n        transition: all 0.4s ease;\n    }\n\n    .logo {\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        font-weight: 300;\n        text-transform: uppercase;\n    }\n\n    .nav a {\n        color: #e8e3d8;\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1.5px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-family: 'Helvetica Neue', sans-serif;\n    }\n\n    .nav a:hover {\n        color: #7a756d;\n    }\n\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .hero-bg {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(135deg, #1a1814 0%, #0a0a0a 50%, #1a1814 100%);\n        opacity: 0.9;\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        text-align: center;\n        max-width: 900px;\n        padding: 0 5%;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero h1 {\n        font-size: 5rem;\n        font-weight: 300;\n        letter-spacing: 2px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        color: #f5f0e8;\n    }\n\n    .hero-subtitle {\n        font-size: 1.3rem;\n        color: #7a756d;\n        letter-spacing: 4px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        font-family: 'Helvetica Neue', sans-serif;\n        font-weight: 300;\n    }\n\n    .hero-tagline {\n        font-size: 1.1rem;\n        color: #b8b0a0;\n        letter-spacing: 2px;\n        font-style: italic;\n        margin-bottom: 3rem;\n    }\n\n    .cta-btn {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        border: 1px solid #7a756d;\n        color: #7a756d;\n        text-decoration: none;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        font-size: 0.85rem;\n        transition: all 0.4s ease;\n        font-family: 'Helvetica Neue', sans-serif;\n    }\n\n    .cta-btn:hover {\n        background: #7a756d;\n        color: #0a0a0a;\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(122, 117, 109, 0.3);\n    }\n\n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        color: #7a756d;\n        font-size: 0.8rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        animation: bounce 2s infinite;\n    }\n\n    @keyframes bounce {\n        0%, 20%, 50%, 80%, 100% {\n            transform: translateX(-50%) translateY(0);\n        }\n        40% {\n            transform: translateX(-50%) translateY(-10px);\n        }\n        60% {\n            transform: translateX(-50%) translateY(-5px);\n        }\n    }\n\n    .video-section {\n        background: #0a0a0a;\n        padding: 8rem 5%;\n        display: flex;\n        justify-content: center;\n        align-items: center;\n    }\n\n    .video-container {\n        position: relative;\n        width: 100%;\n        max-width: 1200px;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid #2a2520;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    .section {\n        padding: 8rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        font-weight: 300;\n        letter-spacing: 2px;\n        margin-bottom: 3rem;\n        text-align: center;\n        color: #f5f0e8;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: #7a756d;\n        margin: 3rem auto;\n    }\n\n    .description {\n        max-width: 800px;\n        margin: 0 auto;\n        font-size: 1.2rem;\n        line-height: 2;\n        color: #c8c0b0;\n        text-align: center;\n    }\n\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 4rem;\n        margin-top: 5rem;\n    }\n\n    .feature {\n        text-align: center;\n        padding: 2rem;\n        transition: transform 0.3s ease;\n    }\n\n    .feature:hover {\n        transform: translateY(-10px);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: #7a756d;\n        margin-bottom: 1.5rem;\n    }\n\n    .feature h3 {\n        font-size: 1.5rem;\n        font-weight: 300;\n        letter-spacing: 1.5px;\n        margin-bottom: 1rem;\n        text-transform: uppercase;\n        color: #f5f0e8;\n    }\n\n    .feature p {\n        color: #b8b0a0;\n        line-height: 1.8;\n    }\n\n    .backstory {\n        background: linear-gradient(135deg, #1a1814 0%, #0f0d0a 100%);\n        padding: 8rem 5%;\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.3rem;\n        line-height: 2.2;\n        color: #d8d0c0;\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    .backstory-content strong {\n        color: #f5f0e8;\n        font-style: normal;\n    }\n\n    .edition-details {\n        background: #0a0a0a;\n        padding: 6rem 5%;\n    }\n\n    .details-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n        max-width: 1200px;\n        margin: 4rem auto 0;\n    }\n\n    .detail-item {\n        text-align: center;\n        border: 1px solid #2a2520;\n        padding: 3rem 2rem;\n        transition: all 0.3s ease;\n    }\n\n    .detail-item:hover {\n        border-color: #7a756d;\n        background: rgba(122, 117, 109, 0.05);\n    }\n\n    .detail-number {\n        font-size: 3rem;\n        color: #7a756d;\n        margin-bottom: 1rem;\n        font-weight: 300;\n    }\n\n    .detail-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: #b8b0a0;\n        font-family: 'Helvetica Neue', sans-serif;\n    }\n\n    .pairing {\n        background: #0f0d0a;\n        padding: 8rem 5%;\n    }\n\n    .pairing-content {\n        max-width: 800px;\n        margin: 3rem auto;\n        text-align: center;\n    }\n\n    .pairing-title {\n        font-size: 1.8rem;\n        color: #7a756d;\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n\n    .pairing-title a {\n        color: #7a756d;\n        text-decoration: none;\n        border-bottom: 1px solid #7a756d;\n        transition: all 0.3s ease;\n    }\n\n    .pairing-title a:hover {\n        color: #f5f0e8;\n        border-bottom-color: #f5f0e8;\n    }\n\n    .collection-explore {\n        background: linear-gradient(135deg, #1a1814 0%, #0a0a0a 100%);\n        padding: 8rem 5%;\n        text-align: center;\n    }\n\n    .collection-btn {\n        display: inline-block;\n        padding: 1.5rem 4rem;\n        background: #0a0a0a;\n        border: 2px solid #7a756d;\n        color: #7a756d;\n        text-decoration: none;\n        letter-spacing: 2.5px;\n        text-transform: uppercase;\n        font-size: 0.9rem;\n        transition: all 0.5s ease;\n        font-family: 'Helvetica Neue', sans-serif;\n        font-weight: 400;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .collection-btn::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(122, 117, 109, 0.2), transparent);\n        transition: left 0.5s ease;\n    }\n\n    .collection-btn:hover::before {\n        left: 100%;\n    }\n\n    .collection-btn:hover {\n        background: #7a756d;\n        color: #0a0a0a;\n        border-color: #7a756d;\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(122, 117, 109, 0.3);\n    }\n\n    .investment {\n        background: #0a0a0a;\n        padding: 8rem 5%;\n    }\n\n    .investment-content {\n        max-width: 800px;\n        margin: 3rem auto;\n        text-align: center;\n    }\n\n    .investment-highlight {\n        font-size: 1.4rem;\n        color: #7a756d;\n        margin: 2rem 0;\n        font-style: italic;\n    }\n\n    .cta-section {\n        background: linear-gradient(135deg, #1a1814 0%, #0f0d0a 100%);\n        padding: 8rem 5%;\n        text-align: center;\n    }\n\n    .cta-large {\n        font-size: 3.5rem;\n        font-weight: 300;\n        margin-bottom: 3rem;\n        line-height: 1.3;\n        color: #f5f0e8;\n    }\n\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n        \n        .section-title {\n            font-size: 2rem;\n        }\n        \n        .nav {\n            display: none;\n        }\n        \n        .section {\n            padding: 5rem 5%;\n        }\n\n        .video-section {\n            padding: 5rem 5%;\n        }\n\n        .cta-large {\n            font-size: 2.5rem;\n        }\n\n        .collection-btn {\n            padding: 1.2rem 2.5rem;\n            font-size: 0.8rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003cheader class=\"header\"\u003e\n        \u003cdiv class=\"logo\"\u003eKasian Art Studio\u003c\/div\u003e\n        \u003cnav class=\"nav\"\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#about\"\u003eAbout\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-bg\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1\u003eEternal Embrace\u003c\/h1\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003cdiv class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/div\u003e\n        \u003ca href=\"#inquire\" class=\"cta-btn\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003eScroll to Explore\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/WTgyu6q-rHc?si=A-LKpJrnN-qSahVU\" title=\"Eternal Embrace — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eIntimate Connection\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description\"\u003e\n        An intimate, cinematic portrait capturing connection, devotion, and timeless elegance—crafted as a museum-grade limited edition for luxury interiors.\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"backstory\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp\u003eThere are moments where time pauses—where the world dissolves, and only connection remains. Eternal Embrace was born from that suspended stillness.\u003c\/p\u003e\n        \n        \u003cp\u003eCaptured in soft charcoal gradients, the piece reflects a bond that is both tender and unwavering. The figures are rendered without distraction—the story told entirely through gesture, tension, and shadow.\u003c\/p\u003e\n        \n        \u003cp\u003eCreated for collectors who understand the poetry of restraint, this artwork echoes the timeless intimacy found in classic portraiture while delivering a modern, moody aesthetic fit for luxury interiors from New York penthouses to boutique Parisian suites.\u003c\/p\u003e\n        \n        \u003cp\u003e\u003cstrong\u003eThis is a piece that doesn't simply hang on a wall—it changes the emotional temperature of the room.\u003c\/strong\u003e\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each individually numbered, inspected, and authenticated for exceptional provenance and lasting collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade archival materials ensure multi-generational preservation. Deep charcoal tones with sculptural softness create emotional depth.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eIntimate figurative works maintain strong collector demand in luxury residential and hospitality markets. Timeless emotional narrative ensures enduring value.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"edition-details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"details-grid\"\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e100%\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eMuseum Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e∞\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eArchival Years\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"pairing\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairing\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"pairing-content\"\u003e\n        \u003cdiv class=\"pairing-title\"\u003eRecommended: \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eEternal Silhouette\u003c\/a\u003e\n\u003c\/div\u003e\n        \u003cdiv class=\"description\"\u003e\n            A moody figurative abstract from the same collection. The pairing deepens the emotional narrative and creates a gallery-quality diptych experience ideal for feature walls, suites, and curated spaces.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"collection-explore\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description\" style=\"margin-bottom: 3rem;\"\u003e\n        Discover more intimate, emotionally charged works from our Black \u0026amp; White Luxury Collection, each piece crafted to transform interiors with cinematic elegance and timeless sophistication.\n    \u003c\/div\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"collection-btn\"\u003eBlack \u0026amp; White Luxury Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"investment\"\u003e\n    \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003cdiv class=\"description\"\u003e\n            Eternal Embrace is a study in intimacy, trust, and human connection. Rendered in deep charcoal tones with sculptural softness, the artwork evokes the quiet power of two souls anchored in each other.\n        \u003c\/div\u003e\n        \u003cdiv class=\"investment-highlight\"\u003e\n            This piece draws its strength from restraint—no distractions, only form, shadow, and the emotional gravity between two bodies.\n        \u003c\/div\u003e\n        \u003cdiv class=\"description\"\u003e\n            Designed for luxury collectors and hospitality spaces, this work transforms a room into a sanctuary of stillness and depth. Perfect for penthouses, boutique hotel suites, Parisian townhomes, and gallery-level installations.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"cta-section\" id=\"inquire\"\u003e\n    \u003cdiv class=\"cta-large\"\u003eBegin Your Collection\u003c\/div\u003e\n    \u003cdiv class=\"description\" style=\"margin-bottom: 3rem;\"\u003e\n        Each acquisition includes a Certificate of Authenticity, museum-grade archival materials, and white-glove delivery service for collectors worldwide.\n    \u003c\/div\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-btn\"\u003eInquire About Availability\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003cfooter style=\"background: #000; padding: 4rem 5%; text-align: center; border-top: 1px solid #2a2520;\"\u003e\n    \u003cdiv style=\"font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 2rem; text-transform: uppercase;\"\u003eKasian Art Studio\u003c\/div\u003e\n    \u003cdiv style=\"color: #b8b0a0; font-size: 0.9rem; letter-spacing: 1px;\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/div\u003e\n    \u003cdiv style=\"margin-top: 2rem;\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #7a756d; text-decoration: none; margin: 0 1rem; font-size: 0.85rem; letter-spacing: 1.5px;\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" style=\"color: #7a756d; text-decoration: none; margin: 0 1rem; font-size: 0.85rem; letter-spacing: 1.5px;\"\u003eContact\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" style=\"color: #7a756d; text-decoration: none; margin: 0 1rem; font-size: 0.85rem; letter-spacing: 1.5px;\"\u003eCollectors\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth', block: 'start' });\n            }\n        });\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('.header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10,10,10,0.98)';\n            header.style.boxShadow = '0 2px 20px rgba(0,0,0,0.5)';\n        } else {\n            header.style.background = 'linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%)';\n            header.style.boxShadow = 'none';\n        }\n    });\n\n    \/\/ Parallax effect on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const scrolled = window.pageYOffset;\n        const parallaxElements = document.querySelectorAll('.hero-bg');\n        parallaxElements.forEach(el =\u003e {\n            el.style.transform = `translateY(${scrolled * 0.5}px)`;\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46084941676709,"sku":"7169501_16039","price":12824.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46084941709477,"sku":"7169501_16045","price":12824.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46084941742245,"sku":"7169501_15700","price":12824.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/23537FA5-B3C3-4DF8-8788-89BE747C82D8_0cfaf94a-2117-406f-901d-8dd60f7c37d2.png?v=1763559566"},{"product_id":"eclipsed-silence","title":"Eclipsed Silence— Luxury Minimalist Black \u0026 White Abstract","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eMinimalist Luxury Wall Art | Exhale — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade minimalist artwork exploring silence, restraint, and negative space for luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-secondary: #1a1a1a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #ffffff;\n        --accent-secondary: #d4d4d4;\n        --divider: rgba(255, 255, 255, 0.15);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* HEADER *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n        padding: 1.5rem 5%;\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--accent);\n        text-decoration: none;\n        transition: all 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-secondary);\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n        text-transform: uppercase;\n    }\n\n    nav a:hover {\n        color: var(--accent);\n    }\n\n    \/* HERO SECTION *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        padding: 8rem 5% 4rem;\n        position: relative;\n        overflow: hidden;\n        background: #000000;\n    }\n\n    \/* Minimal vertical line animation *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 50%;\n        width: 1px;\n        height: 0;\n        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);\n        animation: verticalLine 8s ease-in-out infinite;\n    }\n\n    @keyframes verticalLine {\n        0%, 100% { \n            height: 0;\n            opacity: 0;\n        }\n        50% { \n            height: 100%;\n            opacity: 1;\n        }\n    }\n\n    \/* Minimal dot accent *\/\n    .hero::after {\n        content: '';\n        position: absolute;\n        top: 50%;\n        right: 20%;\n        width: 8px;\n        height: 8px;\n        background: rgba(255, 255, 255, 0.4);\n        border-radius: 50%;\n        animation: dotPulse 6s ease-in-out infinite;\n    }\n\n    @keyframes dotPulse {\n        0%, 100% { \n            opacity: 0.2;\n            transform: scale(1);\n        }\n        50% { \n            opacity: 0.6;\n            transform: scale(1.5);\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.9rem;\n        letter-spacing: 4px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 5rem;\n        font-weight: 300;\n        line-height: 1.2;\n        margin-bottom: 1.5rem;\n        color: var(--text-primary);\n        letter-spacing: 8px;\n    }\n\n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--accent);\n        border: 1px solid var(--accent);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        font-weight: 400;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n    }\n\n    \/* SECTION STYLES *\/\n    section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n    }\n\n    .section-subtitle {\n        text-align: center;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        max-width: 700px;\n        margin: 0 auto 4rem;\n        line-height: 1.8;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--accent);\n        margin: 4rem auto;\n    }\n\n    \/* VIDEO SECTION *\/\n    .video-section {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* DESCRIPTION SECTION *\/\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .description-content p {\n        margin-bottom: 1.5rem;\n    }\n\n    .description-highlight {\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    \/* BACKSTORY SECTION *\/\n    .backstory-section {\n        background: var(--bg-secondary);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.6rem;\n        line-height: 2.5;\n        color: var(--text-secondary);\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    \/* FEATURES GRID *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-10px);\n        border-color: var(--accent);\n        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);\n    }\n\n    .feature-icon {\n        font-size: 2rem;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n        line-height: 1.8;\n    }\n\n    \/* EDITION DETAILS *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 2rem 1rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat:last-child {\n        border-right: none;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n        font-weight: 400;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n    }\n\n    \/* PAIRINGS SECTION *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1rem;\n    }\n\n    \/* COLLECTION CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-secondary) 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 5%;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* INVESTMENT SECTION *\/\n    .investment-section {\n        background: var(--bg-dark);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent);\n        color: var(--accent);\n    }\n\n    \/* LUXURY BRANDS *\/\n    .luxury-brands {\n        background: var(--bg-secondary);\n        padding: 4rem 5%;\n        text-align: center;\n    }\n\n    .luxury-brands h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-secondary);\n        font-weight: 400;\n    }\n\n    .brand-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        color: var(--accent);\n        letter-spacing: 3px;\n    }\n\n    \/* FINAL CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        text-align: center;\n        background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-secondary) 100%);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        font-weight: 400;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* FOOTER *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 4rem 5%;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n    }\n\n    .footer-section h4 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n        font-weight: 400;\n    }\n\n    .footer-section p,\n    .footer-section a {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        line-height: 2;\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .footer-section a:hover {\n        color: var(--accent);\n    }\n\n    .social-links {\n        display: flex;\n        gap: 1.5rem;\n        margin-top: 1rem;\n    }\n\n    .social-links a {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        transition: all 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent);\n        transform: translateY(-3px);\n    }\n\n    .copyright {\n        text-align: center;\n        margin-top: 3rem;\n        padding-top: 2rem;\n        border-top: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n    }\n\n    \/* RESPONSIVE *\/\n    @media (max-width: 768px) {\n        .hero-title {\n            font-size: 3.5rem;\n            letter-spacing: 4px;\n        }\n\n        .hero-tagline {\n            font-size: 1.3rem;\n        }\n\n        .section-title {\n            font-size: 2.5rem;\n        }\n\n        nav a {\n            margin-left: 1.5rem;\n            font-size: 0.8rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .stat {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat:last-child {\n            border-bottom: none;\n        }\n    }\n\n    \/* SCROLL ANIMATIONS *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- HEADER --\u003e\n\u003cheader\u003e\n    \u003cdiv class=\"header-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cnav\u003e\n            \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n            \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/div\u003e\n\u003c\/header\u003e\n\n\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 15\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003eEXHALE\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eA Study in Absolute Restraint\u003c\/p\u003e\n        \u003cp class=\"section-subtitle\"\u003eWhen less becomes everything.\u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"cta-button\"\u003eInquire About This Piece\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- VIDEO SECTION --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/_BY6zlgJF6s?si=LbT9K_D89BaRNsKM\" title=\"Exhale\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- DESCRIPTION SECTION --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eIntentional Silence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eExhale is not an image—it is a pause.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003eA singular vertical gesture meets a quiet point of interruption, suspended in negative space. This work explores finality, breath, and intentional silence, drawing power not from excess but from discipline. The composition commands attention through restraint, offering a moment of calm authority rather than explanation.\u003c\/p\u003e\n        \u003cp\u003eThis piece belongs in interiors curated for those who understand visual weight: spaces where confidence is expressed through clarity, not decoration. It thrives in \u003cspan class=\"description-highlight\"\u003emodern penthouses, executive corridors, boutique hotel lobbies, private galleries,\u003c\/span\u003e and architectural interiors where minimalism is elevated to philosophy.\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eThis is not decorative art.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eThis is decisive art.\u003c\/span\u003e\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BACKSTORY SECTION --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Space Between\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp\u003eBefore the word.\u003c\/p\u003e\n        \u003cp\u003eAfter the noise.\u003c\/p\u003e\n        \u003cp\u003eThere is this.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- MUSEUM-GRADE FEATURES --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e—\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 15 prints will ever exist. Each piece is numbered and authenticated, ensuring absolute exclusivity for collectors who value rarity and architectural presence.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e—\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Archival pigment inks on premium substrates deliver precise tonal clarity and crisp edge integrity for minimalist compositions.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e—\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchitectural Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMinimalist abstracts transcend trends. This piece is designed for high-end architectural spaces, executive environments, and galleries where visual discipline defines the aesthetic.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- EDITION DETAILS --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e15\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCertificate Included\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- CURATED PAIRINGS --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eTogether, these works form a curated silence collection designed for high-end architectural spaces.\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eStillness I\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eNegative Authority — A companion study in visual weight and negative space. Together with Exhale, these pieces create a dialogue of restraint for collectors who value clarity over complexity.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eQuiet Form\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMinimal Gesture Series — An exploration of essential form reduced to its purest expression. Paired with Exhale, these works establish a visual language of absolute discipline.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- COLLECTION CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp\u003eDiscover more works from the Collector's Gallery Limited Editions—pieces reserved for those who understand that true luxury requires nothing superfluous.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/collector-s-gallery-limited-editions\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- INVESTMENT SECTION --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Architectural Interiors\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eThis artwork is created for spaces that value clarity, restraint, and architectural presence over ornamentation.\u003c\/div\u003e\n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Corridors\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Galleries\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoutique Lobbies\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePenthouse Studies\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eArchitectural Foyers\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoardrooms\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- LUXURY BRANDS --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3\u003eTrusted by Leading Luxury Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FINAL CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003eBegin Your Acquisition\u003c\/h2\u003e\n    \u003cp\u003eFor pricing, framing consultations tailored to architectural spaces, or installation guidance, contact our curatorial team.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- FOOTER --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eKasian Art Studio\u003c\/h4\u003e\n            \u003cp\u003eMuseum-grade fine art for luxury interiors, private collectors, and hospitality brands.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eQuick Links\u003c\/h4\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eAll Collections\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout the Artist\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eConnect\u003c\/h4\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"copyright\"\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- SCROLL ANIMATIONS SCRIPT --\u003e\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46084942823589,"sku":"1559158_16039","price":12764.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46084942856357,"sku":"1559158_16045","price":12764.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46084942889125,"sku":"1559158_15700","price":12764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/4590D4C0-C3E7-44B7-86F8-A30CD49AF8D3.png?v=1763559519"},{"product_id":"glass-reverie","title":"Liquid Poise• Sculptural Monochrome Luxury Art Print","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Abstract Wall Art | Liquid Poise — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade abstract art inspired by glass, light, and restraint for luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-secondary: #1a1a1a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #c9b896;\n        --accent-hover: #d4c4a8;\n        --divider: rgba(201, 184, 150, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* HEADER *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(201, 184, 150, 0.1);\n        padding: 1.5rem 5%;\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--accent);\n        text-decoration: none;\n        transition: all 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-hover);\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n        text-transform: uppercase;\n    }\n\n    nav a:hover {\n        color: var(--accent);\n    }\n\n    \/* HERO SECTION *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        padding: 8rem 5% 4rem;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 800px;\n        height: 800px;\n        background: radial-gradient(circle, rgba(201, 184, 150, 0.05) 0%, transparent 70%);\n        animation: gentlePulse 12s ease-in-out infinite;\n    }\n\n    @keyframes gentlePulse {\n        0%, 100% { \n            transform: translate(-50%, -50%) scale(1); \n            opacity: 0.4; \n        }\n        50% { \n            transform: translate(-50%, -50%) scale(1.15); \n            opacity: 0.6; \n        }\n    }\n\n    \/* Floating curves animation *\/\n    .hero::after {\n        content: '';\n        position: absolute;\n        bottom: -20%;\n        right: -10%;\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(ellipse, rgba(201, 184, 150, 0.03) 0%, transparent 60%);\n        border-radius: 50%;\n        animation: floatCurve 20s ease-in-out infinite;\n    }\n\n    @keyframes floatCurve {\n        0%, 100% { \n            transform: translate(0, 0) rotate(0deg);\n        }\n        50% { \n            transform: translate(-50px, -50px) rotate(5deg);\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.9rem;\n        letter-spacing: 4px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 4.5rem;\n        font-weight: 600;\n        line-height: 1.2;\n        margin-bottom: 1.5rem;\n        color: var(--text-primary);\n        letter-spacing: -1px;\n    }\n\n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--accent);\n        border: 2px solid var(--accent);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        font-weight: 500;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n    }\n\n    \/* SECTION STYLES *\/\n    section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 600;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .section-subtitle {\n        text-align: center;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        max-width: 700px;\n        margin: 0 auto 4rem;\n        line-height: 1.8;\n    }\n\n    .divider {\n        width: 100px;\n        height: 2px;\n        background: var(--accent);\n        margin: 4rem auto;\n    }\n\n    \/* VIDEO SECTION *\/\n    .video-section {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* DESCRIPTION SECTION *\/\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .description-content p {\n        margin-bottom: 1.5rem;\n    }\n\n    .description-highlight {\n        color: var(--text-primary);\n        font-weight: 500;\n    }\n\n    \/* BACKSTORY SECTION *\/\n    .backstory-section {\n        background: var(--bg-secondary);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.4rem;\n        line-height: 2.2;\n        color: var(--text-secondary);\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    \/* FEATURES GRID *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-10px);\n        border-color: var(--accent);\n        box-shadow: 0 20px 40px rgba(201, 184, 150, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n        line-height: 1.8;\n    }\n\n    \/* EDITION DETAILS *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 2rem 1rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat:last-child {\n        border-right: none;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n        font-weight: 600;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n    }\n\n    \/* PAIRINGS SECTION *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1rem;\n    }\n\n    \/* COLLECTION CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-secondary) 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 5%;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* INVESTMENT SECTION *\/\n    .investment-section {\n        background: var(--bg-dark);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent);\n        color: var(--accent);\n    }\n\n    \/* LUXURY BRANDS *\/\n    .luxury-brands {\n        background: var(--bg-secondary);\n        padding: 4rem 5%;\n        text-align: center;\n    }\n\n    .luxury-brands h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-secondary);\n        font-weight: 400;\n    }\n\n    .brand-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        color: var(--accent);\n        letter-spacing: 3px;\n    }\n\n    \/* FINAL CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        text-align: center;\n        background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-secondary) 100%);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* FOOTER *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 4rem 5%;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n    }\n\n    .footer-section h4 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n    }\n\n    .footer-section p,\n    .footer-section a {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        line-height: 2;\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .footer-section a:hover {\n        color: var(--accent);\n    }\n\n    .social-links {\n        display: flex;\n        gap: 1.5rem;\n        margin-top: 1rem;\n    }\n\n    .social-links a {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        transition: all 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent);\n        transform: translateY(-3px);\n    }\n\n    .copyright {\n        text-align: center;\n        margin-top: 3rem;\n        padding-top: 2rem;\n        border-top: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n    }\n\n    \/* RESPONSIVE *\/\n    @media (max-width: 768px) {\n        .hero-title {\n            font-size: 3rem;\n        }\n\n        .hero-tagline {\n            font-size: 1.3rem;\n        }\n\n        .section-title {\n            font-size: 2.5rem;\n        }\n\n        nav a {\n            margin-left: 1.5rem;\n            font-size: 0.8rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .stat {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat:last-child {\n            border-bottom: none;\n        }\n    }\n\n    \/* SCROLL ANIMATIONS *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- HEADER --\u003e\n\u003cheader\u003e\n    \u003cdiv class=\"header-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cnav\u003e\n            \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n            \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/div\u003e\n\u003c\/header\u003e\n\n\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 25\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003eLiquid Poise\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eThe Shape of Quiet Luxury\u003c\/p\u003e\n        \u003cp class=\"section-subtitle\"\u003eWhere restraint becomes desire.\u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"cta-button\"\u003eInquire About This Piece\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- VIDEO SECTION --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/ZC0Lz5Kb3H4?si=4Rjr0DB3M7nQ52QA\" title=\"Liquid Poise\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- DESCRIPTION SECTION --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eForm in Suspension\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eLiquid Poise — The Shape of Quiet Luxury\u003c\/span\u003e is an exploration of controlled fluidity—a moment where form pauses just long enough to be admired.\u003c\/p\u003e\n        \u003cp\u003eRendered in sculptural monochrome, the composition captures a glass-like curve suspended between motion and stillness. Light glides across its surface with discipline, revealing tension, balance, and elegance without excess. There is no narrative imposed—only suggestion. Only refinement.\u003c\/p\u003e\n        \u003cp\u003eThis work speaks to collectors and designers who understand that true luxury whispers. It belongs in environments where calm authority is the defining feature: \u003cspan class=\"description-highlight\"\u003eexecutive lounges, penthouse living rooms, private dining spaces, wine rooms,\u003c\/span\u003e and five-star hospitality corridors.\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eIt does not compete with a space. It completes it.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003eThis is art for those who notice proportion, shadow, and silence.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BACKSTORY SECTION --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Philosophy of Restraint\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp\u003eBefore movement, there is balance.\u003c\/p\u003e\n        \u003cp\u003eBefore indulgence, control.\u003c\/p\u003e\n        \u003cp\u003eBefore sound—silence.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- MUSEUM-GRADE FEATURES --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 25 prints will ever exist. Each piece is numbered and authenticated, ensuring exclusivity and investment-level positioning for discerning collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Ultra-rich archival pigment inks on premium fine art substrates deliver exceptional tonal depth and sculptural diffusion.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eHospitality Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMinimalist abstracts maintain enduring appeal in luxury environments. This piece is designed for wine rooms, private dining spaces, boutique hotels, and refined residential interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- EDITION DETAILS --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e25\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCertificate Included\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- CURATED PAIRINGS --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eCurated together, these works create a visual language of composure and restraint.\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eStill Decanter\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eAn Ode to Pause — A contemplative study of form and negative space. The perfect companion to Liquid Poise for creating environments that value silence over spectacle.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eRefined Tension\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eWhere Light Rests — Capturing the moment where light meets surface with intention. Together with Liquid Poise, these pieces speak the language of understated elegance.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- COLLECTION CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp\u003eDiscover more works from the Black \u0026amp; White Luxury Collection—contemporary pieces that celebrate proportion, restraint, and the quiet poetry of form.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- INVESTMENT SECTION --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Refined Environments\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eThis artwork is created for interiors that value proportion, calm, and quiet luxury over ornament.\u003c\/div\u003e\n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eWine Rooms\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Lounges\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Dining\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePenthouse Living\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoutique Hotels\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eLuxury Corridors\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- LUXURY BRANDS --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3\u003eTrusted by Leading Luxury Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FINAL CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003eBegin Your Acquisition\u003c\/h2\u003e\n    \u003cp\u003eFor pricing, framing consultations, or custom installation guidance for wine rooms and luxury spaces, contact our curatorial team.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- FOOTER --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eKasian Art Studio\u003c\/h4\u003e\n            \u003cp\u003eMuseum-grade fine art for luxury interiors, private collectors, and hospitality brands.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eQuick Links\u003c\/h4\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eAll Collections\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout the Artist\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eConnect\u003c\/h4\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"copyright\"\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- SCROLL ANIMATIONS SCRIPT --\u003e\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46084944461989,"sku":"6176226_16039","price":13764.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46084944494757,"sku":"6176226_16045","price":13764.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46084944527525,"sku":"6176226_15700","price":13764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/2980066A-548E-45DA-A512-09689432BD18.png?v=1763646754"},{"product_id":"black-stilettos","title":"black stilletto — Executive Study No. I","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Executive Wall Art | Red Sole Authority — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade luxury artwork symbolizing power, confidence, and authority—designed for executive offices and refined interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #111111;\n        --bg-executive: #141414;\n        --text-primary: #f5f5f5;\n        --text-secondary: #c0c0c0;\n        --text-muted: #808080;\n        --accent-red: #c41e3a;\n        --accent-crimson: #8B0000;\n        --accent-gold: #d4a574;\n        --accent-neutral: #e8e0d5;\n        --accent-primary: #1a1a1a;\n        --accent-secondary: #2a2a2a;\n        --border-color: #333333;\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background-color: var(--bg-primary);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Fixed Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.98);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        padding: 1rem 5%;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-red);\n    }\n\n    .nav {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-weight: 500;\n    }\n\n    .nav a:hover {\n        color: var(--accent-red);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n        padding: 0 5%;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, var(--bg-executive) 0%, var(--bg-primary) 100%);\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),\n            radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.06) 0%, transparent 50%);\n        animation: powerPulse 8s ease-in-out infinite;\n    }\n\n    @keyframes powerPulse {\n        0%, 100% { opacity: 0.5; }\n        50% { opacity: 0.8; }\n    }\n\n    .authority-accent {\n        position: absolute;\n        bottom: 10%;\n        left: 50%;\n        transform: translateX(-50%);\n        width: 300px;\n        height: 3px;\n        background: linear-gradient(90deg, \n            transparent, \n            var(--accent-red), \n            var(--accent-crimson), \n            transparent);\n        opacity: 0.6;\n        animation: slideAccent 6s ease-in-out infinite;\n    }\n\n    @keyframes slideAccent {\n        0%, 100% { \n            transform: translateX(-50%) scaleX(0.5); \n            opacity: 0.4; \n        }\n        50% { \n            transform: translateX(-50%) scaleX(1); \n            opacity: 0.8; \n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-family: var(--sans);\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--accent-red);\n        margin-bottom: 1.5rem;\n        font-weight: 500;\n    }\n\n    .hero-title {\n        font-family: var(--display);\n        font-size: clamp(2.5rem, 8vw, 5.5rem);\n        font-weight: 500;\n        line-height: 1.1;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n        background: linear-gradient(135deg, \n            var(--text-primary) 0%, \n            var(--accent-red) 50%,\n            var(--accent-crimson) 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n    }\n\n    .hero-edition {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-style: italic;\n    }\n\n    .hero-tagline {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        color: var(--accent-red);\n        border: 1px solid var(--accent-red);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        font-weight: 500;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-red);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--text-primary);\n        border-color: var(--accent-red);\n    }\n\n    \/* Section Styles *\/\n    .section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 5vw, 3rem);\n        font-weight: 400;\n        margin-bottom: 3rem;\n        text-align: center;\n        letter-spacing: 1px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 2px;\n        background: linear-gradient(90deg, \n            transparent, \n            var(--accent-red), \n            transparent);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 900px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 177.78%;\n        height: 0;\n        overflow: hidden;\n        background: #000;\n        border: 1px solid var(--accent-red);\n        box-shadow: 0 0 50px rgba(196, 30, 58, 0.2);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        text-align: center;\n        background: var(--bg-executive);\n    }\n\n    .description-text {\n        font-size: 1.15rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        max-width: 800px;\n        margin: 0 auto;\n        font-weight: 400;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-secondary);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: var(--serif);\n        font-size: 1.25rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .backstory-highlight {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-style: italic;\n        text-align: center;\n        margin: 3rem 0;\n        color: var(--accent-red);\n        letter-spacing: 1px;\n        line-height: 1.3;\n        font-weight: 400;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n        position: relative;\n    }\n\n    .feature-card::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        height: 3px;\n        background: linear-gradient(90deg, \n            transparent, \n            var(--accent-red), \n            var(--accent-crimson), \n            transparent);\n        transform: scaleX(0);\n        transition: transform 0.4s ease;\n    }\n\n    .feature-card:hover::before {\n        transform: scaleX(1);\n    }\n\n    .feature-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--accent-red);\n        box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-red);\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 500;\n    }\n\n    .feature-text {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Edition Details Grid *\/\n    .edition-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n        padding: 3rem;\n        background: var(--bg-executive);\n        border-top: 2px solid var(--accent-red);\n        border-bottom: 2px solid var(--accent-crimson);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .edition-grid::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 200%;\n        height: 100%;\n        background: linear-gradient(90deg, \n            transparent, \n            rgba(196, 30, 58, 0.05), \n            transparent);\n        animation: authorityShimmer 10s infinite;\n    }\n\n    @keyframes authorityShimmer {\n        0% { left: -100%; }\n        100% { left: 100%; }\n    }\n\n    .edition-stat {\n        text-align: center;\n        padding: 1.5rem;\n        position: relative;\n        z-index: 2;\n    }\n\n    .edition-number {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        color: var(--accent-red);\n        margin-bottom: 0.5rem;\n        font-weight: 500;\n    }\n\n    .edition-label {\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--bg-primary);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--border-color);\n        border-left: 3px solid var(--accent-red);\n        transition: all 0.3s ease;\n        position: relative;\n    }\n\n    .pairing-card:hover {\n        border-left-width: 5px;\n        transform: translateX(5px);\n        box-shadow: -5px 5px 20px rgba(196, 30, 58, 0.15);\n    }\n\n    .pairing-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--accent-red);\n        font-weight: 500;\n    }\n\n    .pairing-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, var(--bg-executive) 0%, var(--bg-primary) 100%);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .collection-cta::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at 50% 50%, \n            rgba(196, 30, 58, 0.1) 0%, \n            transparent 70%);\n    }\n\n    .collection-cta-content {\n        position: relative;\n        z-index: 2;\n    }\n\n    .collection-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 5vw, 3.5rem);\n        margin-bottom: 1.5rem;\n        font-weight: 500;\n        background: linear-gradient(135deg, \n            var(--text-primary) 0%, \n            var(--accent-red) 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n    }\n\n    .collection-subtitle {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n        line-height: 1.8;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-secondary);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .investment-text {\n        font-size: 1.15rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .spaces-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 2rem;\n    }\n\n    .space-tag {\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        padding: 0.75rem 1.5rem;\n        background: var(--bg-executive);\n        border: 1px solid var(--accent-red);\n        transition: all 0.3s ease;\n        font-weight: 500;\n    }\n\n    .space-tag:hover {\n        background: var(--accent-red);\n        color: var(--text-primary);\n        transform: translateY(-2px);\n        box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 5%;\n        background: var(--bg-executive);\n        text-align: center;\n        border-top: 1px solid var(--accent-red);\n        border-bottom: 1px solid var(--accent-crimson);\n    }\n\n    .brand-strip-title {\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n    }\n\n    .brand-names {\n        font-family: var(--serif);\n        font-size: 1.5rem;\n        background: linear-gradient(90deg, \n            var(--accent-gold), \n            var(--text-primary), \n            var(--accent-red));\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n        letter-spacing: 3px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 5%;\n        background: radial-gradient(ellipse at center, var(--bg-executive) 0%, var(--bg-primary) 70%);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .final-cta::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, \n            rgba(196, 30, 58, 0.12) 0%, \n            transparent 70%);\n        animation: commandPulse 10s ease-in-out infinite;\n    }\n\n    @keyframes commandPulse {\n        0%, 100% { \n            transform: translate(-50%, -50%) scale(1); \n            opacity: 0.5; \n        }\n        50% { \n            transform: translate(-50%, -50%) scale(1.2); \n            opacity: 0.8; \n        }\n    }\n\n    .final-cta-content {\n        position: relative;\n        z-index: 2;\n    }\n\n    .final-cta-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 6vw, 4rem);\n        margin-bottom: 2rem;\n        font-weight: 500;\n        background: linear-gradient(135deg, \n            var(--text-primary) 0%, \n            var(--accent-red) 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n    }\n\n    .final-cta-subtitle {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .final-cta-email {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--accent-red);\n        text-decoration: none;\n        border-bottom: 1px solid var(--accent-red);\n        transition: all 0.3s ease;\n        padding-bottom: 0.25rem;\n    }\n\n    .final-cta-email:hover {\n        color: var(--text-primary);\n        border-color: var(--text-primary);\n    }\n\n    \/* Footer *\/\n    .footer {\n        padding: 3rem 5%;\n        background: var(--bg-primary);\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .footer-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .footer-links a:hover {\n        color: var(--accent-red);\n    }\n\n    .footer-copyright {\n        font-size: 0.85rem;\n        color: var(--text-muted);\n        letter-spacing: 1px;\n    }\n\n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .header {\n            padding: 1rem 3%;\n        }\n\n        .nav {\n            gap: 1rem;\n        }\n\n        .nav a {\n            font-size: 0.75rem;\n        }\n\n        .section {\n            padding: 4rem 3%;\n        }\n\n        .hero-title {\n            font-size: 2.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-grid {\n            grid-template-columns: repeat(2, 1fr);\n            padding: 2rem 1rem;\n        }\n\n        .spaces-list {\n            flex-direction: column;\n            align-items: center;\n        }\n\n        .brand-names {\n            font-size: 1.1rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- Fixed Header --\u003e\n\u003cheader class=\"header\"\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN\u003c\/a\u003e\n    \u003cnav class=\"nav\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/nav\u003e\n\u003c\/header\u003e\n\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"authority-accent\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"hero-subtitle\"\u003eKasian Art Studio\u003c\/p\u003e\n        \u003ch1 class=\"hero-title\"\u003eRed Sole Authority\u003c\/h1\u003e\n        \u003cp class=\"hero-edition\"\u003eLimited Edition of 25\u003c\/p\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Red%20Sole%20Authority\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"section-title fade-in\"\u003eExecutive Study No. I\u003c\/div\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"video-container fade-in\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/IRQ84UMQUCs\" title=\"Red Sole Authority — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"section description\"\u003e\n    \u003cp class=\"description-text fade-in\"\u003e\n        Power, precision, and quiet seduction—captured from the ground up. An international symbol of status, confidence, and uncompromising taste.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"section backstory\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eThe Story\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            Red Sole Authority is a study in control without noise. The composition reveals only what matters: elongated legs poised in stillness, finished with unmistakable red soles—an international symbol of status, confidence, and uncompromising taste.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            The body is cropped, anonymous, and deliberate. Identity dissolves into authority.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-highlight fade-in\"\u003e\n            \"She never raises her voice.\u003cbr\u003eThe room adjusts.\"\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            Set against a softened neutral field and framed in warm gold, the artwork balances restraint with provocation. There is no chaos here. No excess. Only intent.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            This piece was created for environments where decisions are made quietly and power is expressed without explanation—executive offices, private boardrooms, luxury penthouses, and collector-grade residential spaces.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            It does not ask permission. It assumes command.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 25 prints will ever exist. Each edition is individually numbered, signed, and authenticated with museum-grade provenance documentation for executive permanence and collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade archival pigment inks ensure 100+ year color stability with exceptional tonal depth and clarity. Premium fine-art substrates maintain visual authority across decades.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eExecutive art symbolizing power and confidence maintains strong demand among collectors, business leaders, and tastemakers who value visual statements that command presence without explanation.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"edition-grid fade-in\"\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e25\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eCollector Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"section pairings\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eQuiet Power — Executive Study No. II\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA complementary study exploring stillness and command through minimalist composition. Together, these works create a powerful diptych of executive presence—ideal for high-level office suites and luxury boardrooms.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eThe Pause Between Decisions\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eAn abstract exploration of momentary stillness before action. When paired with Red Sole Authority, these pieces establish a visual narrative of controlled power perfect for executive office corridors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\"\u003e\n    \u003cdiv class=\"collection-cta-content\"\u003e\n        \u003ch2 class=\"collection-title fade-in\"\u003eBlack \u0026amp; White Luxury Collection\u003c\/h2\u003e\n        \u003cp class=\"collection-subtitle fade-in\"\u003eExplore the complete collection of refined monochrome artworks curated for collectors who value restraint, elegance, and powerful visual statements that command without explanation.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button fade-in\"\u003eView Collection\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"section investment\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eDesigned For Command\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003cp class=\"investment-text fade-in\"\u003e\n            This work is curated for environments where decisions are final and power is expressed through presence—spaces designed for leaders, tastemakers, and collectors who value authority without noise.\n        \u003c\/p\u003e\n        \u003cdiv class=\"spaces-list\"\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eExecutive Offices\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003ePrivate Boardrooms\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eLuxury Penthouses\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eCollector Residences\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eCorporate Headquarters\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eC-Suite Offices\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eLaw Firm Suites\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eInvestment Bank Corridors\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp class=\"brand-strip-title\"\u003eTrusted by the World's Finest\u003c\/p\u003e\n    \u003cp class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003cdiv class=\"final-cta-content\"\u003e\n        \u003ch2 class=\"final-cta-title fade-in\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp class=\"final-cta-subtitle fade-in\"\u003eLimited availability. Museum-grade provenance. Collector-ready documentation.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Collector%20Inquiry:%20Red%20Sole%20Authority\" class=\"final-cta-email fade-in\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-links\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\"\u003ePinterest\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eStudio\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"footer-copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46084947509413,"sku":"1907898_16039","price":12334.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46084947542181,"sku":"1907898_16045","price":12334.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46084947574949,"sku":"1907898_15700","price":12334.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/79702282-6760-400A-9452-96239700694E.png?v=1763559172"},{"product_id":"shadow-construct","title":"ShadowFORM STUDY 1 Monochrome Architectural Abstraction","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eShadowform Study I — Luxury Black \u0026amp; Neutral Abstract Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A moody black-and-neutral abstract designed for penthouses, luxury homes, and boutique hotels. Museum-grade. Limited Edition of 50. Moody. Elegant. Timeless.\"\u003e\n    \u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n```\n    body {\n        font-family: 'Cormorant Garamond', 'Playfair Display', serif;\n        background: #0a0a0a;\n        color: #e8e3d8;\n        overflow-x: hidden;\n        line-height: 1.7;\n    }\n\n    .header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        padding: 2rem 5%;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        z-index: 1000;\n        background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);\n        transition: all 0.4s ease;\n    }\n\n    .logo {\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        font-weight: 300;\n        text-transform: uppercase;\n    }\n\n    .nav a {\n        color: #e8e3d8;\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1.5px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-family: 'Helvetica Neue', sans-serif;\n    }\n\n    .nav a:hover {\n        color: #c8c0b0;\n    }\n\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .hero-bg {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(135deg, #1a1814 0%, #0a0a0a 50%, #1a1814 100%);\n        opacity: 0.9;\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        text-align: center;\n        max-width: 900px;\n        padding: 0 5%;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero h1 {\n        font-size: 5rem;\n        font-weight: 300;\n        letter-spacing: 2px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        color: #f5f0e8;\n    }\n\n    .hero-subtitle {\n        font-size: 1.3rem;\n        color: #c8c0b0;\n        letter-spacing: 4px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        font-family: 'Helvetica Neue', sans-serif;\n        font-weight: 300;\n    }\n\n    .hero-tagline {\n        font-size: 1.1rem;\n        color: #b8b0a0;\n        letter-spacing: 2px;\n        font-style: italic;\n        margin-bottom: 3rem;\n    }\n\n    .cta-btn {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        border: 1px solid #c8c0b0;\n        color: #c8c0b0;\n        text-decoration: none;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        font-size: 0.85rem;\n        transition: all 0.4s ease;\n        font-family: 'Helvetica Neue', sans-serif;\n    }\n\n    .cta-btn:hover {\n        background: #c8c0b0;\n        color: #0a0a0a;\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(200, 192, 176, 0.3);\n    }\n\n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        color: #c8c0b0;\n        font-size: 0.8rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        animation: bounce 2s infinite;\n    }\n\n    @keyframes bounce {\n        0%, 20%, 50%, 80%, 100% {\n            transform: translateX(-50%) translateY(0);\n        }\n        40% {\n            transform: translateX(-50%) translateY(-10px);\n        }\n        60% {\n            transform: translateX(-50%) translateY(-5px);\n        }\n    }\n\n    .video-section {\n        background: #0a0a0a;\n        padding: 8rem 5%;\n        display: flex;\n        justify-content: center;\n        align-items: center;\n    }\n\n    .video-container {\n        position: relative;\n        width: 100%;\n        max-width: 1200px;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid #2a2520;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    .section {\n        padding: 8rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        font-weight: 300;\n        letter-spacing: 2px;\n        margin-bottom: 3rem;\n        text-align: center;\n        color: #f5f0e8;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: #c8c0b0;\n        margin: 3rem auto;\n    }\n\n    .description {\n        max-width: 800px;\n        margin: 0 auto;\n        font-size: 1.2rem;\n        line-height: 2;\n        color: #c8c0b0;\n        text-align: center;\n    }\n\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 4rem;\n        margin-top: 5rem;\n    }\n\n    .feature {\n        text-align: center;\n        padding: 2rem;\n        transition: transform 0.3s ease;\n    }\n\n    .feature:hover {\n        transform: translateY(-10px);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        color: #c8c0b0;\n        margin-bottom: 1.5rem;\n    }\n\n    .feature h3 {\n        font-size: 1.5rem;\n        font-weight: 300;\n        letter-spacing: 1.5px;\n        margin-bottom: 1rem;\n        text-transform: uppercase;\n        color: #f5f0e8;\n    }\n\n    .feature p {\n        color: #b8b0a0;\n        line-height: 1.8;\n    }\n\n    .backstory {\n        background: linear-gradient(135deg, #1a1814 0%, #0f0d0a 100%);\n        padding: 8rem 5%;\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.3rem;\n        line-height: 2.2;\n        color: #d8d0c0;\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    .backstory-content strong {\n        color: #f5f0e8;\n        font-style: normal;\n    }\n\n    .edition-details {\n        background: #0a0a0a;\n        padding: 6rem 5%;\n    }\n\n    .details-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n        max-width: 1200px;\n        margin: 4rem auto 0;\n    }\n\n    .detail-item {\n        text-align: center;\n        border: 1px solid #2a2520;\n        padding: 3rem 2rem;\n        transition: all 0.3s ease;\n    }\n\n    .detail-item:hover {\n        border-color: #c8c0b0;\n        background: rgba(200, 192, 176, 0.05);\n    }\n\n    .detail-number {\n        font-size: 3rem;\n        color: #c8c0b0;\n        margin-bottom: 1rem;\n        font-weight: 300;\n    }\n\n    .detail-label {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: #b8b0a0;\n        font-family: 'Helvetica Neue', sans-serif;\n    }\n\n    .pairing {\n        background: #0f0d0a;\n        padding: 8rem 5%;\n    }\n\n    .pairing-content {\n        max-width: 800px;\n        margin: 3rem auto;\n        text-align: center;\n    }\n\n    .pairing-title {\n        font-size: 1.8rem;\n        color: #c8c0b0;\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n\n    .pairing-title a {\n        color: #c8c0b0;\n        text-decoration: none;\n        border-bottom: 1px solid #c8c0b0;\n        transition: all 0.3s ease;\n    }\n\n    .pairing-title a:hover {\n        color: #f5f0e8;\n        border-bottom-color: #f5f0e8;\n    }\n\n    .collection-explore {\n        background: linear-gradient(135deg, #1a1814 0%, #0a0a0a 100%);\n        padding: 8rem 5%;\n        text-align: center;\n    }\n\n    .collection-btn {\n        display: inline-block;\n        padding: 1.5rem 4rem;\n        background: transparent;\n        border: 2px solid #c8c0b0;\n        color: #c8c0b0;\n        text-decoration: none;\n        letter-spacing: 2.5px;\n        text-transform: uppercase;\n        font-size: 0.9rem;\n        transition: all 0.5s ease;\n        font-family: 'Helvetica Neue', sans-serif;\n        font-weight: 400;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .collection-btn::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(200, 192, 176, 0.15), transparent);\n        transition: left 0.5s ease;\n    }\n\n    .collection-btn:hover::before {\n        left: 100%;\n    }\n\n    .collection-btn:hover {\n        background: rgba(200, 192, 176, 0.1);\n        border-color: #c8c0b0;\n        color: #f5f0e8;\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(200, 192, 176, 0.2);\n    }\n\n    .investment {\n        background: #0a0a0a;\n        padding: 8rem 5%;\n    }\n\n    .investment-content {\n        max-width: 800px;\n        margin: 3rem auto;\n        text-align: center;\n    }\n\n    .investment-highlight {\n        font-size: 1.4rem;\n        color: #c8c0b0;\n        margin: 2rem 0;\n        font-style: italic;\n    }\n\n    .cta-section {\n        background: linear-gradient(135deg, #1a1814 0%, #0f0d0a 100%);\n        padding: 8rem 5%;\n        text-align: center;\n    }\n\n    .cta-large {\n        font-size: 3.5rem;\n        font-weight: 300;\n        margin-bottom: 3rem;\n        line-height: 1.3;\n        color: #f5f0e8;\n    }\n\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 3rem;\n        }\n        \n        .section-title {\n            font-size: 2rem;\n        }\n        \n        .nav {\n            display: none;\n        }\n        \n        .section {\n            padding: 5rem 5%;\n        }\n\n        .video-section {\n            padding: 5rem 5%;\n        }\n\n        .cta-large {\n            font-size: 2.5rem;\n        }\n\n        .collection-btn {\n            padding: 1.2rem 2.5rem;\n            font-size: 0.8rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003cheader class=\"header\"\u003e\n        \u003cdiv class=\"logo\"\u003eKasian Art Studio\u003c\/div\u003e\n        \u003cnav class=\"nav\"\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#about\"\u003eAbout\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-bg\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1\u003eShadowform Study I\u003c\/h1\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 50\u003c\/div\u003e\n        \u003cdiv class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/div\u003e\n        \u003ca href=\"#inquire\" class=\"cta-btn\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003eScroll to Explore\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/JiIX9_ZCCzA?si=wjhE2njfqxP1A9T_\" title=\"Shadowform Study I — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eArchitectural Stillness\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description\"\u003e\n        A moody, architectural black-and-neutral abstract crafted for penthouses, luxury homes, boutique hotels, and timeless designer interiors.\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"backstory\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp\u003eThere is a moment in every architectural space where light meets silence—a slow shift, a gentle fade, a shadow taking shape.\u003c\/p\u003e\n        \n        \u003cp\u003eShadowform Study I was created to capture that moment.\u003c\/p\u003e\n        \n        \u003cp\u003eThe deep black forms rise like the silhouette of a distant structure, dissolving into soft tonal haze. It feels grounded yet ethereal, bold yet calming. A reminder of how space, stillness, and shadow can speak their own quiet language.\u003c\/p\u003e\n        \n        \u003cp\u003eIn modern villas, penthouses, boutique hotels, and designer living rooms, this artwork becomes more than décor. \u003cstrong\u003eIt becomes a presence—deepening the room, anchoring its energy, elevating its mood.\u003c\/strong\u003e\u003c\/p\u003e\n        \n        \u003cp\u003e\u003cstrong\u003eCollectors choose this piece for its sophistication, its minimalism, and its ability to make any space feel architectural, intentional, and timeless.\u003c\/strong\u003e\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eOnly 50 prints will ever exist. Each hand-inspected, signed, and authenticated for exceptional provenance and lasting collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003eMuseum-grade, acid-free, UV-resistant materials ensure multi-generational preservation. Matte texture with soft gradient detailing creates dimensional depth.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eBlack-and-neutral abstracts are among the strongest performers in luxury residential and hospitality design—sought after for versatility, emotional depth, and long-term collectability.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \n\n\n\u003csection class=\"edition-details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"details-grid\"\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e100%\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eMuseum Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"detail-item\"\u003e\n            \u003cdiv class=\"detail-number\"\u003e∞\u003c\/div\u003e\n            \u003cdiv class=\"detail-label\"\u003eArchival Years\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"pairing\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairing\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"pairing-content\"\u003e\n        \u003cdiv class=\"pairing-title\"\u003eRecommended: \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eEclipse of Elegance\u003c\/a\u003e\n\u003c\/div\u003e\n        \u003cdiv class=\"description\"\u003e\n            Together, they form a powerful, moody diptych—soft fog meeting structured shadow. Ideal for luxury living rooms, hotel lobby galleries, penthouse hallways, and high-end commercial spaces.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"collection-explore\"\u003e\n    \u003ch2 class=\"section-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description\" style=\"margin-bottom: 3rem;\"\u003e\n        Discover more architectural abstracts from our Black \u0026amp; White Luxury Collection, each piece crafted to deepen space, anchor energy, and bring meditative sophistication to luxury interiors.\n    \u003c\/div\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"collection-btn\"\u003eBlack \u0026amp; White Luxury Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"investment\"\u003e\n    \u003ch2 class=\"section-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003cdiv class=\"description\"\u003e\n            Shadowform Study I is a commanding exploration of contrast—bold, sculptural darkness dissolving softly into light. The composition feels architectural yet atmospheric, as if a shadow had lifted itself from a wall and turned into form. The textured gradients evoke modernist brushwork, fog over stone, or the silhouette of an abstracted landscape.\n        \u003c\/div\u003e\n        \u003cdiv class=\"investment-highlight\"\u003e\n            Black-and-neutral abstracts are among the strongest performers in luxury residential and hospitality design.\n        \u003c\/div\u003e\n        \u003cdiv class=\"description\"\u003e\n            This piece thrives in interiors built on quiet luxury: villas, penthouses, boutique hotel suites, architect-designed residences, and gallery-inspired homes. Its neutral palette allows it to complement stone, beige, oak, concrete, linen, and minimalist color schemes with cinematic ease.\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003csection class=\"cta-section\" id=\"inquire\"\u003e\n    \u003cdiv class=\"cta-large\"\u003eBegin Your Collection\u003c\/div\u003e\n    \u003cdiv class=\"description\" style=\"margin-bottom: 3rem;\"\u003e\n        Each acquisition includes a Certificate of Authenticity, museum-grade archival materials, and white-glove delivery service for collectors worldwide.\n    \u003c\/div\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-btn\"\u003eInquire About Availability\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003cfooter style=\"background: #000; padding: 4rem 5%; text-align: center; border-top: 1px solid #2a2520;\"\u003e\n    \u003cdiv style=\"font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 2rem; text-transform: uppercase;\"\u003eKasian Art Studio\u003c\/div\u003e\n    \u003cdiv style=\"color: #b8b0a0; font-size: 0.9rem; letter-spacing: 1px;\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/div\u003e\n    \u003cdiv style=\"margin-top: 2rem;\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #c8c0b0; text-decoration: none; margin: 0 1rem; font-size: 0.85rem; letter-spacing: 1.5px;\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" style=\"color: #c8c0b0; text-decoration: none; margin: 0 1rem; font-size: 0.85rem; letter-spacing: 1.5px;\"\u003eContact\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" style=\"color: #c8c0b0; text-decoration: none; margin: 0 1rem; font-size: 0.85rem; letter-spacing: 1.5px;\"\u003eCollectors\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth', block: 'start' });\n            }\n        });\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('.header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10,10,10,0.98)';\n            header.style.boxShadow = '0 2px 20px rgba(0,0,0,0.5)';\n        } else {\n            header.style.background = 'linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%)';\n            header.style.boxShadow = 'none';\n        }\n    });\n\n    \/\/ Parallax effect on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const scrolled = window.pageYOffset;\n        const parallaxElements = document.querySelectorAll('.hero-bg');\n        parallaxElements.forEach(el =\u003e {\n            el.style.transform = `translateY(${scrolled * 0.5}px)`;\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/div\u003e\u003c\/section\u003e\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":46084954587301,"sku":"6536235_16039","price":10314.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":46084954620069,"sku":"6536235_16045","price":10314.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":46084954652837,"sku":"6536235_15700","price":10314.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/3B95D13D-0EA7-4413-BA23-3CBB0007118E.png?v=1763646385"},{"product_id":"black-authority-stairwell-portrait-no-i","title":"Black Authority — Stairwell Portrait No. I","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eBlack Authority — Luxury Stairwell Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A commanding monochrome portrait curated for luxury stairwells, modern residences, and architectural interiors. Museum-grade fine art print, limited edition of 50.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700;800\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #121212;\n        --bg-elevated: #1a1a1a;\n        --text-primary: #ffffff;\n        --text-secondary: #b8b8b8;\n        --text-muted: #787878;\n        --accent: #2a2a2a;\n        --accent-hover: #3a3a3a;\n        --divider: #2a2a2a;\n        --serif: 'Cormorant Garamond', serif;\n        --serif-display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background: var(--bg-primary);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--divider);\n    }\n\n    .header-container {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--serif-display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        text-decoration: none;\n        color: var(--text-primary);\n    }\n\n    .nav {\n        display: flex;\n        gap: 2.5rem;\n        align-items: center;\n    }\n\n    .nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        font-weight: 400;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav a:hover {\n        color: var(--text-primary);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding: 8rem 2rem 4rem;\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(ellipse at 20% 30%, rgba(42, 42, 42, 0.15) 0%, transparent 50%),\n            radial-gradient(ellipse at 80% 70%, rgba(42, 42, 42, 0.1) 0%, transparent 50%);\n        pointer-events: none;\n    }\n\n    .hero-content {\n        max-width: 900px;\n        text-align: center;\n        position: relative;\n        z-index: 1;\n    }\n\n    .hero-subtitle {\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n        animation: fadeInUp 1s ease 0.2s both;\n    }\n\n    .hero-title {\n        font-family: var(--serif-display);\n        font-size: clamp(3rem, 8vw, 5.5rem);\n        font-weight: 400;\n        line-height: 1.1;\n        margin-bottom: 1.5rem;\n        letter-spacing: 1px;\n        animation: fadeInUp 1s ease 0.4s both;\n    }\n\n    .hero-edition {\n        font-family: var(--sans);\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-weight: 400;\n        animation: fadeInUp 1s ease 0.6s both;\n    }\n\n    .hero-tagline {\n        font-family: var(--serif);\n        font-size: 1.4rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        font-weight: 300;\n        animation: fadeInUp 1s ease 0.8s both;\n    }\n\n    .hero-cta {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: var(--accent);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n        font-weight: 500;\n        animation: fadeInUp 1s ease 1s both;\n    }\n\n    .hero-cta:hover {\n        background: var(--accent-hover);\n        border-color: var(--text-muted);\n        transform: translateY(-2px);\n    }\n\n    \/* Staircase Animation *\/\n    .staircase-lines {\n        position: absolute;\n        right: 10%;\n        top: 50%;\n        transform: translateY(-50%);\n        width: 200px;\n        height: 300px;\n        opacity: 0.1;\n        pointer-events: none;\n    }\n\n    .stair-step {\n        position: absolute;\n        right: 0;\n        height: 2px;\n        background: var(--text-primary);\n        animation: stepReveal 2s ease both;\n    }\n\n    .stair-step:nth-child(1) { width: 60px; top: 0; animation-delay: 0s; }\n    .stair-step:nth-child(2) { width: 80px; top: 40px; animation-delay: 0.2s; }\n    .stair-step:nth-child(3) { width: 100px; top: 80px; animation-delay: 0.4s; }\n    .stair-step:nth-child(4) { width: 120px; top: 120px; animation-delay: 0.6s; }\n    .stair-step:nth-child(5) { width: 140px; top: 160px; animation-delay: 0.8s; }\n    .stair-step:nth-child(6) { width: 160px; top: 200px; animation-delay: 1s; }\n    .stair-step:nth-child(7) { width: 180px; top: 240px; animation-delay: 1.2s; }\n\n    @keyframes stepReveal {\n        from {\n            width: 0;\n            opacity: 0;\n        }\n        to {\n            opacity: 0.5;\n        }\n    }\n\n    \/* Section Styles *\/\n    .section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-narrow {\n        max-width: 900px;\n    }\n\n    .section-title {\n        font-family: var(--serif-display);\n        font-size: clamp(2.5rem, 5vw, 3.5rem);\n        font-weight: 400;\n        text-align: center;\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    .section-subtitle {\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        text-align: center;\n        margin-bottom: 1rem;\n        font-weight: 400;\n    }\n\n    \/* Video Section *\/\n    .video-container {\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        max-width: 1200px;\n        margin: 0 auto;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description *\/\n    .description {\n        background: var(--bg-secondary);\n        border-top: 1px solid var(--divider);\n        border-bottom: 1px solid var(--divider);\n    }\n\n    .description-text {\n        font-family: var(--serif);\n        font-size: 1.25rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: center;\n        max-width: 800px;\n        margin: 0 auto;\n        font-weight: 300;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--divider);\n        margin: 3rem auto;\n    }\n\n    \/* Backstory *\/\n    .backstory-content {\n        font-family: var(--serif);\n        font-size: 1.15rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .backstory-content p {\n        margin-bottom: 1.8rem;\n        font-weight: 300;\n    }\n\n    .backstory-content p:last-child {\n        margin-bottom: 0;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        background: var(--bg-elevated);\n        padding: 3rem 2rem;\n        border: 1px solid var(--divider);\n        text-align: center;\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--accent-hover);\n        transform: translateY(-5px);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        opacity: 0.6;\n    }\n\n    .feature-title {\n        font-family: var(--serif-display);\n        font-size: 1.4rem;\n        margin-bottom: 1rem;\n        font-weight: 500;\n    }\n\n    .feature-text {\n        font-family: var(--sans);\n        font-size: 0.95rem;\n        line-height: 1.7;\n        color: var(--text-secondary);\n        font-weight: 300;\n    }\n\n    \/* Edition Details *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--bg-elevated);\n        border: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 2rem 1rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat:last-child {\n        border-right: none;\n    }\n\n    .stat-number {\n        font-family: var(--serif-display);\n        font-size: 2.5rem;\n        font-weight: 300;\n        margin-bottom: 0.5rem;\n        color: var(--text-primary);\n    }\n\n    .stat-label {\n        font-family: var(--sans);\n        font-size: 0.8rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        font-weight: 400;\n    }\n\n    \/* Pairings *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        background: var(--bg-elevated);\n        padding: 2.5rem;\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent-hover);\n        transform: translateY(-3px);\n    }\n\n    .pairing-title {\n        font-family: var(--serif-display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        font-weight: 500;\n    }\n\n    .pairing-description {\n        font-family: var(--sans);\n        font-size: 0.95rem;\n        line-height: 1.7;\n        color: var(--text-secondary);\n        font-weight: 300;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: var(--bg-elevated);\n        border: 1px solid var(--divider);\n        padding: 4rem 3rem;\n        text-align: center;\n        margin-top: 3rem;\n    }\n\n    .collection-cta h3 {\n        font-family: var(--serif-display);\n        font-size: 2rem;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .collection-cta p {\n        font-family: var(--sans);\n        font-size: 1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n\n    .collection-link {\n        display: inline-block;\n        padding: 1rem 2.5rem;\n        background: transparent;\n        color: var(--text-primary);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n        font-weight: 500;\n    }\n\n    .collection-link:hover {\n        background: var(--accent);\n        border-color: var(--text-muted);\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-secondary);\n        border-top: 1px solid var(--divider);\n        border-bottom: 1px solid var(--divider);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.8rem 1.5rem;\n        background: var(--bg-elevated);\n        border: 1px solid var(--divider);\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n        font-weight: 400;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 2rem;\n        background: var(--bg-primary);\n        border-top: 1px solid var(--divider);\n        border-bottom: 1px solid var(--divider);\n    }\n\n    .brand-strip-title {\n        font-family: var(--sans);\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        text-align: center;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        font-weight: 400;\n    }\n\n    .brand-logos {\n        display: flex;\n        justify-content: center;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 3rem;\n        font-family: var(--serif-display);\n        font-size: 1.3rem;\n        color: var(--text-muted);\n        font-weight: 300;\n    }\n\n    .brand-separator {\n        color: var(--divider);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 2rem;\n        text-align: center;\n        background: \n            radial-gradient(ellipse at 50% 50%, rgba(42, 42, 42, 0.15) 0%, transparent 70%);\n    }\n\n    .final-cta h2 {\n        font-family: var(--serif-display);\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .final-cta p {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n        font-weight: 300;\n    }\n\n    .inquiry-button {\n        display: inline-block;\n        padding: 1.3rem 3.5rem;\n        background: var(--text-primary);\n        color: var(--bg-primary);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        font-weight: 600;\n    }\n\n    .inquiry-button:hover {\n        background: var(--text-secondary);\n        transform: translateY(-2px);\n    }\n\n    \/* Footer *\/\n    .footer {\n        padding: 4rem 2rem 3rem;\n        border-top: 1px solid var(--divider);\n        text-align: center;\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-weight: 400;\n    }\n\n    .social-links a:hover {\n        color: var(--text-primary);\n    }\n\n    .footer-copyright {\n        font-family: var(--sans);\n        font-size: 0.8rem;\n        color: var(--text-muted);\n        letter-spacing: 1px;\n        font-weight: 300;\n    }\n\n    \/* Animations *\/\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .fade-in {\n        opacity: 0;\n        animation: fadeInUp 1s ease forwards;\n    }\n\n    \/* Scroll animations *\/\n    .scroll-reveal {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .scroll-reveal.revealed {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav {\n            display: none;\n        }\n\n        .hero {\n            padding: 6rem 1.5rem 3rem;\n        }\n\n        .section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: 1fr 1fr;\n        }\n\n        .stat {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat:last-child {\n            border-bottom: none;\n        }\n\n        .staircase-lines {\n            display: none;\n        }\n\n        .brand-logos {\n            font-size: 1rem;\n            gap: 1.5rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader class=\"header\"\u003e\n        \u003cdiv class=\"header-container\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav class=\"nav\"\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n                \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"staircase-lines\"\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"stair-step\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eKasian Art Studio\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003eBlack Authority\u003c\/h1\u003e\n        \u003cdiv class=\"hero-edition\"\u003eStairwell Portrait No. I — Limited Edition of 50\u003c\/div\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Black%20Authority\" class=\"hero-cta\"\u003eInquire About This Work\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eExperience the Work\u003c\/div\u003e\n    \u003ch2 class=\"section-title\"\u003eArchitectural Dominance\u003c\/h2\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/FGI00rvzsvQ\" title=\"Black Authority — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description --\u003e\n\u003csection class=\"description\"\u003e\n    \u003cdiv class=\"section section-narrow\"\u003e\n        \u003cp class=\"description-text\"\u003e\n            A commanding portrait of power, restraint, and architectural dominance.\n        \u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003e\n            Set against raw concrete and sculptural steps, this work explores control as luxury—where presence matters more than decoration.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory --\u003e\n\u003csection class=\"section section-narrow\"\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eThe Narrative\u003c\/div\u003e\n    \u003ch2 class=\"section-title\"\u003eA Position, Not a Pose\u003c\/h2\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp\u003e\n            Black Authority — Stairwell Portrait No. I is not a pose. It is a position.\n        \u003c\/p\u003e\n        \u003cp\u003e\n            Set against raw concrete and architectural steps, the subject commands the space without excess movement or ornament. Her gaze is composed. Her posture deliberate. The staircase rises beside her—not as a destination, but as a declaration: ascent is implied.\n        \u003c\/p\u003e\n        \u003cp\u003e\n            This work explores control as luxury. The absence of softness sharpens the composition. Matte blacks, sculptural lighting, and clean geometry create a visual hierarchy where the figure does not compete with architecture—she owns it.\n        \u003c\/p\u003e\n        \u003cp\u003e\n            Designed for ultra-modern interiors, stairwells, executive residences, private galleries, and hospitality environments where presence matters more than decoration, this artwork functions as an anchor piece. It does not ask permission. It establishes tone.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eMuseum-Grade Excellence\u003c\/div\u003e\n    \u003ch2 class=\"section-title\"\u003eCrafted for Permanence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card scroll-reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e⚫\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003e\n                Only 50 prints will ever exist. Each piece is individually numbered and authenticated, ensuring exclusivity and long-term investment value for discerning collectors.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card scroll-reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◼\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003e\n                Museum-grade materials ensure 100+ year longevity. Printed with archival pigment inks on premium substrates for exceptional tonal depth and preservation.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card scroll-reveal\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e▪\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003e\n                Monochrome portraits maintain strong demand in luxury markets. Architectural photography commands premium positioning in galleries, private collections, and hospitality venues.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eTechnical Specifications\u003c\/div\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eGrade Quality\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eCurated for Your Collection\u003c\/div\u003e\n    \u003ch2 class=\"section-title\"\u003ePairs Exceptionally With\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card scroll-reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eQuiet Power\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003e\n                Monochrome Figure Study — A complementary work exploring restraint and sovereignty. Together, these pieces create a narrative of architectural authority ideal for executive corridors and modern stairwells.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card scroll-reveal\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eAscend\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003e\n                Architectural Minimalist Series — Abstract geometry meets vertical movement. These works establish a cohesive visual language for modern residences and luxury hospitality spaces.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Collection CTA --\u003e\n    \u003cdiv class=\"collection-cta\"\u003e\n        \u003ch3\u003eBlack \u0026amp; White Luxury Collection\u003c\/h3\u003e\n        \u003cp\u003eExplore the complete collection of monochrome masterworks designed for modern sophistication.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"collection-link\"\u003eView Collection\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment\"\u003e\n    \u003cdiv class=\"section section-narrow\"\u003e\n        \u003cdiv class=\"section-subtitle\"\u003eInvestment Positioning\u003c\/div\u003e\n        \u003ch2 class=\"section-title\"\u003eDesigned For\u003c\/h2\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cspan class=\"space-tag\"\u003eUltra-Modern Stairwells\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eExecutive Residences\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003ePrivate Galleries\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eLuxury Penthouses\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eBoutique Hotels\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eCorporate Lobbies\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eArchitectural Spaces\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eDesign Studios\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cdiv class=\"brand-strip-title\"\u003eTrusted by Luxury Hospitality Brands\u003c\/div\u003e\n    \u003cdiv class=\"brand-logos\"\u003e\n        \u003cspan\u003eAman\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n        \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003ch2\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp\u003eLimited availability. Museum-grade quality. Investment-level positioning.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Black%20Authority%20%E2%80%94%20Stairwell%20Portrait%20No.%20I\" class=\"inquiry-button\"\u003eContact the Studio\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\"\u003eFacebook\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\"\u003ePinterest\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-copyright\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Reveal Script --\u003e\n\u003cscript\u003e\n    \/\/ Scroll reveal animation\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('revealed');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.scroll-reveal').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Parallax effect for hero background\n    window.addEventListener('scroll', () =\u003e {\n        const scrolled = window.pageYOffset;\n        const hero = document.querySelector('.hero');\n        if (hero \u0026\u0026 scrolled \u003c window.innerHeight) {\n            hero.style.transform = `translateY(${scrolled * 0.3}px)`;\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46761759342757,"sku":"5432206_16039","price":7224.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/117274FD-6AAE-4F13-9327-55A675B5535C.png?v=1765146260"},{"product_id":"poise-in-silence","title":"Poise of Silence — Sculptural Noir Study","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Black \u0026amp; White Portrait Art | Poise in Silence — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A sculptural monochrome portrait curated for luxury homes, stairwells, and refined architectural interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #111111;\n        --text-primary: #f5f5f5;\n        --text-secondary: #c0c0c0;\n        --text-muted: #808080;\n        --accent-primary: #1a1a1a;\n        --accent-secondary: #2a2a2a;\n        --border-color: #333333;\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background-color: var(--bg-primary);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Fixed Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        padding: 1rem 5%;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav a:hover {\n        color: var(--text-primary);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n        padding: 0 5%;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);\n        animation: pulse 8s ease-in-out infinite;\n    }\n\n    @keyframes pulse {\n        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }\n        50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-family: var(--sans);\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    .hero-title {\n        font-family: var(--display);\n        font-size: clamp(2.5rem, 8vw, 5rem);\n        font-weight: 400;\n        line-height: 1.1;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n    }\n\n    .hero-edition {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-style: italic;\n    }\n\n    .hero-tagline {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        color: var(--text-primary);\n        border: 1px solid var(--text-primary);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--text-primary);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-primary);\n    }\n\n    \/* Section Styles *\/\n    .section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 5vw, 3rem);\n        font-weight: 400;\n        margin-bottom: 3rem;\n        text-align: center;\n        letter-spacing: 1px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: var(--text-primary);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 900px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 177.78%; \/* 9:16 aspect ratio for shorts *\/\n        height: 0;\n        overflow: hidden;\n        background: #000;\n        border: 1px solid var(--border-color);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        text-align: center;\n    }\n\n    .description-text {\n        font-size: 1.15rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-secondary);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: var(--serif);\n        font-size: 1.25rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .backstory-highlight {\n        font-family: var(--display);\n        font-size: 1.8rem;\n        font-style: italic;\n        text-align: center;\n        margin: 3rem 0;\n        color: var(--text-primary);\n        letter-spacing: 1px;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--border-color);\n        transition: transform 0.3s ease, border-color 0.3s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--text-muted);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Edition Details Grid *\/\n    .edition-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n        padding: 3rem;\n        background: var(--accent-primary);\n        border: 1px solid var(--border-color);\n    }\n\n    .edition-stat {\n        text-align: center;\n        padding: 1.5rem;\n    }\n\n    .edition-number {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        color: var(--text-primary);\n        margin-bottom: 0.5rem;\n    }\n\n    .edition-label {\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--bg-primary);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--text-muted);\n        transform: translateY(-3px);\n    }\n\n    .pairing-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .pairing-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);\n    }\n\n    .collection-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 5vw, 3.5rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-subtitle {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-secondary);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .investment-text {\n        font-size: 1.15rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .spaces-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 2rem;\n    }\n\n    .space-tag {\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        padding: 0.75rem 1.5rem;\n        background: var(--accent-primary);\n        border: 1px solid var(--border-color);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 5%;\n        background: var(--bg-primary);\n        text-align: center;\n        border-top: 1px solid var(--border-color);\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .brand-strip-title {\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n    }\n\n    .brand-names {\n        font-family: var(--serif);\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        letter-spacing: 3px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 5%;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);\n    }\n\n    .final-cta-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 6vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta-subtitle {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .final-cta-email {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--text-primary);\n        text-decoration: none;\n        border-bottom: 1px solid var(--text-primary);\n        transition: color 0.3s ease;\n    }\n\n    .final-cta-email:hover {\n        color: var(--text-secondary);\n    }\n\n    \/* Footer *\/\n    .footer {\n        padding: 3rem 5%;\n        background: var(--bg-primary);\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .footer-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .footer-links a:hover {\n        color: var(--text-primary);\n    }\n\n    .footer-copyright {\n        font-size: 0.85rem;\n        color: var(--text-muted);\n        letter-spacing: 1px;\n    }\n\n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .header {\n            padding: 1rem 3%;\n        }\n\n        .nav {\n            gap: 1rem;\n        }\n\n        .nav a {\n            font-size: 0.75rem;\n        }\n\n        .section {\n            padding: 4rem 3%;\n        }\n\n        .hero-title {\n            font-size: 2.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-grid {\n            grid-template-columns: repeat(2, 1fr);\n            padding: 2rem 1rem;\n        }\n\n        .spaces-list {\n            flex-direction: column;\n            align-items: center;\n        }\n\n        .video-container {\n            padding-bottom: 177.78%;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- Fixed Header --\u003e\n\u003cheader class=\"header\"\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN\u003c\/a\u003e\n    \u003cnav class=\"nav\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/nav\u003e\n\u003c\/header\u003e\n\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"hero-subtitle\"\u003eKasian Art Studio\u003c\/p\u003e\n        \u003ch1 class=\"hero-title\"\u003ePoise in Silence\u003c\/h1\u003e\n        \u003cp class=\"hero-edition\"\u003eLimited Edition of 50\u003c\/p\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Poise%20in%20Silence\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"section-title fade-in\"\u003eSculptural Noir Study\u003c\/div\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"video-container fade-in\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/J1_Y726WmRo\" title=\"Poise in Silence — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"section description\"\u003e\n    \u003cp class=\"description-text fade-in\"\u003e\n        A study of restraint, feminine power, and timeless composure—rendered in refined monochrome where elegance is not performed, but inherent.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"section backstory\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eThe Story\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            Poise in Silence captures a moment that exists between movement and stillness—where elegance is not performed, but inherent.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            Rendered in refined monochrome, the figure is grounded low, balanced, composed. Every line curves inward toward intention. The spine lengthens. The heels elevate without noise. The gesture is self-contained, measured, and irreversibly confident.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-highlight fade-in\"\u003e\n            \"She lowers herself—not to descend, but to remain untouchable.\"\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            This work is about controlled femininity—the type of power that does not advance forward, but draws the space inward. There is no invitation, no explanation. Only presence.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            Designed to live in interiors where silence is intentional—executive residences, private stairwells, gallery corridors, boutique hotels, and luxury hospitality suites—this work acts as a gravitational anchor.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            It calms the room. It commands without interruption.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e⚡\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 50 prints will ever exist. Each edition is individually numbered and authenticated with museum-grade provenance documentation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade archival pigment inks ensure 100+ year color stability. Printed on premium fine-art substrates for exceptional tonal depth and preservation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e✦\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eSculptural monochrome portraiture maintains strong demand among collectors who value restraint, elegance, and quiet authority in their collections.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"edition-grid fade-in\"\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eCollector Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"section pairings\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eBlack Authority — Stairwell Portrait No. I\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA commanding presence in architectural black. Together, these works create a narrative of power and restraint—ideal for curated series installations in luxury interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eQuiet Power — Monochrome Figure Study\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eAn elegant study in composure and controlled femininity. When paired, these pieces establish a visual dialogue of quiet dominance and timeless sophistication.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\"\u003e\n    \u003ch2 class=\"collection-title fade-in\"\u003eEmotional Figurative Collection\u003c\/h2\u003e\n    \u003cp class=\"collection-subtitle fade-in\"\u003eExplore the complete collection of sculptural portraits curated for discerning collectors and refined architectural spaces.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button fade-in\"\u003eView Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"section investment\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eDesigned For Distinction\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003cp class=\"investment-text fade-in\"\u003e\n            This work is curated for interiors that value restraint over excess—spaces where every element is intentional, measured, and architecturally considered.\n        \u003c\/p\u003e\n        \u003cdiv class=\"spaces-list\"\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eExecutive Residences\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003ePrivate Stairwells\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eGallery Corridors\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eBoutique Hotels\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eLuxury Hospitality Suites\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eCorporate Art Collections\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp class=\"brand-strip-title\"\u003eTrusted by the World's Finest\u003c\/p\u003e\n    \u003cp class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003ch2 class=\"final-cta-title fade-in\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp class=\"final-cta-subtitle fade-in\"\u003eLimited availability. Museum-grade provenance. Collector-ready documentation.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Collector%20Inquiry:%20Poise%20in%20Silence\" class=\"final-cta-email fade-in\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-links\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\"\u003ePinterest\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eStudio\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"footer-copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":46987270455461,"sku":"7880832_16039","price":10224.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/299D65CA-5F34-4F91-8343-0F111AD91509.png?v=1765633672"},{"product_id":"executive-muse-the-woman-who-owns-the-room","title":"Executive Muse — The Woman Who Owns the Room","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Executive Fashion Art | Executive Noir — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade monochrome fashion portrait designed for executive offices, luxury penthouses, and refined architectural interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #111111;\n        --bg-noir: #0d0d0d;\n        --text-primary: #f5f5f5;\n        --text-secondary: #c0c0c0;\n        --text-muted: #808080;\n        --accent-silver: #c0c0c0;\n        --accent-steel: #989898;\n        --accent-platinum: #e8e8e8;\n        --accent-charcoal: #3a3a3a;\n        --accent-primary: #1a1a1a;\n        --accent-secondary: #2a2a2a;\n        --border-color: #333333;\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background-color: var(--bg-primary);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Fixed Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.98);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--border-color);\n        padding: 1rem 5%;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-silver);\n    }\n\n    .nav {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-weight: 500;\n    }\n\n    .nav a:hover {\n        color: var(--accent-platinum);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n        padding: 0 5%;\n        position: relative;\n        overflow: hidden;\n        background: radial-gradient(ellipse at center, var(--bg-noir) 0%, var(--bg-primary) 70%);\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(circle at 30% 40%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),\n            radial-gradient(circle at 70% 60%, rgba(232, 232, 232, 0.04) 0%, transparent 50%);\n        animation: noirGlow 10s ease-in-out infinite;\n    }\n\n    @keyframes noirGlow {\n        0%, 100% { opacity: 0.6; }\n        50% { opacity: 0.9; }\n    }\n\n    .fashion-accent {\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 400px;\n        height: 400px;\n        border: 1px solid rgba(192, 192, 192, 0.1);\n        border-radius: 50%;\n        animation: fashionPulse 12s ease-in-out infinite;\n    }\n\n    @keyframes fashionPulse {\n        0%, 100% { \n            transform: translate(-50%, -50%) scale(1);\n            opacity: 0.3;\n        }\n        50% { \n            transform: translate(-50%, -50%) scale(1.3);\n            opacity: 0.6;\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-family: var(--sans);\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--accent-silver);\n        margin-bottom: 1.5rem;\n        font-weight: 500;\n    }\n\n    .hero-title {\n        font-family: var(--display);\n        font-size: clamp(2.5rem, 8vw, 5.5rem);\n        font-weight: 400;\n        line-height: 1.1;\n        margin-bottom: 1rem;\n        letter-spacing: 2px;\n        background: linear-gradient(135deg, \n            var(--accent-platinum) 0%, \n            var(--text-primary) 50%,\n            var(--accent-silver) 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n    }\n\n    .hero-edition {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        font-style: italic;\n    }\n\n    .hero-tagline {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 2px;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        color: var(--accent-silver);\n        border: 1px solid var(--accent-silver);\n        text-decoration: none;\n        font-family: var(--sans);\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        font-weight: 500;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent-silver);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-primary);\n        border-color: var(--accent-platinum);\n    }\n\n    \/* Section Styles *\/\n    .section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 5vw, 3rem);\n        font-weight: 400;\n        margin-bottom: 3rem;\n        text-align: center;\n        letter-spacing: 1px;\n    }\n\n    .divider {\n        width: 80px;\n        height: 2px;\n        background: linear-gradient(90deg, \n            transparent, \n            var(--accent-silver), \n            transparent);\n        margin: 0 auto 4rem;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        background: #000;\n        border: 1px solid var(--accent-silver);\n        box-shadow: 0 0 40px rgba(192, 192, 192, 0.12);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description {\n        text-align: center;\n        background: var(--bg-noir);\n    }\n\n    .description-text {\n        font-size: 1.15rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        max-width: 800px;\n        margin: 0 auto;\n        font-weight: 300;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-secondary);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: var(--serif);\n        font-size: 1.25rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n\n    .backstory-highlight {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-style: italic;\n        text-align: center;\n        margin: 3rem 0;\n        color: var(--accent-platinum);\n        letter-spacing: 2px;\n        line-height: 1.3;\n        font-weight: 300;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--border-color);\n        transition: all 0.3s ease;\n        position: relative;\n    }\n\n    .feature-card::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        height: 2px;\n        background: linear-gradient(90deg, \n            transparent, \n            var(--accent-silver), \n            transparent);\n        transform: scaleX(0);\n        transition: transform 0.4s ease;\n    }\n\n    .feature-card:hover::before {\n        transform: scaleX(1);\n    }\n\n    .feature-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--accent-silver);\n        box-shadow: 0 10px 30px rgba(192, 192, 192, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent-silver);\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .feature-text {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Edition Details Grid *\/\n    .edition-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 3rem;\n        padding: 3rem;\n        background: var(--bg-noir);\n        border-top: 1px solid var(--accent-silver);\n        border-bottom: 1px solid var(--accent-charcoal);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .edition-grid::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 200%;\n        height: 100%;\n        background: linear-gradient(90deg, \n            transparent, \n            rgba(192, 192, 192, 0.05), \n            transparent);\n        animation: elegantShimmer 10s infinite;\n    }\n\n    @keyframes elegantShimmer {\n        0% { left: -100%; }\n        100% { left: 100%; }\n    }\n\n    .edition-stat {\n        text-align: center;\n        padding: 1.5rem;\n        position: relative;\n        z-index: 2;\n    }\n\n    .edition-number {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        color: var(--accent-platinum);\n        margin-bottom: 0.5rem;\n        font-weight: 400;\n    }\n\n    .edition-label {\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n    }\n\n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--bg-primary);\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--border-color);\n        border-left: 2px solid var(--accent-silver);\n        transition: all 0.3s ease;\n        position: relative;\n    }\n\n    .pairing-card:hover {\n        border-left-width: 4px;\n        border-left-color: var(--accent-platinum);\n        transform: translateX(5px);\n        box-shadow: -5px 5px 20px rgba(192, 192, 192, 0.1);\n    }\n\n    .pairing-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--accent-platinum);\n        font-weight: 400;\n    }\n\n    .pairing-description {\n        font-size: 0.95rem;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 6rem 5%;\n        background: linear-gradient(135deg, var(--bg-noir) 0%, var(--bg-primary) 100%);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .collection-cta::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at 50% 50%, \n            rgba(192, 192, 192, 0.08) 0%, \n            transparent 70%);\n    }\n\n    .collection-cta-content {\n        position: relative;\n        z-index: 2;\n    }\n\n    .collection-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 5vw, 3.5rem);\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n        background: linear-gradient(135deg, \n            var(--accent-platinum) 0%, \n            var(--text-primary) 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n    }\n\n    .collection-subtitle {\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n        line-height: 1.8;\n    }\n\n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-secondary);\n    }\n\n    .investment-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .investment-text {\n        font-size: 1.15rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .spaces-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 2rem;\n    }\n\n    .space-tag {\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        padding: 0.75rem 1.5rem;\n        background: var(--bg-noir);\n        border: 1px solid var(--accent-silver);\n        transition: all 0.3s ease;\n        font-weight: 400;\n    }\n\n    .space-tag:hover {\n        background: var(--accent-silver);\n        color: var(--bg-primary);\n        transform: translateY(-2px);\n        box-shadow: 0 5px 15px rgba(192, 192, 192, 0.2);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        padding: 4rem 5%;\n        background: var(--bg-noir);\n        text-align: center;\n        border-top: 1px solid var(--accent-silver);\n        border-bottom: 1px solid var(--accent-charcoal);\n    }\n\n    .brand-strip-title {\n        font-size: 0.75rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n    }\n\n    .brand-names {\n        font-family: var(--serif);\n        font-size: 1.5rem;\n        background: linear-gradient(90deg, \n            var(--accent-platinum), \n            var(--accent-silver), \n            var(--accent-steel));\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n        letter-spacing: 3px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 8rem 5%;\n        background: radial-gradient(ellipse at center, var(--bg-noir) 0%, var(--bg-primary) 70%);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .final-cta::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, \n            rgba(192, 192, 192, 0.08) 0%, \n            transparent 70%);\n        animation: finalGlow 12s ease-in-out infinite;\n    }\n\n    @keyframes finalGlow {\n        0%, 100% { \n            transform: translate(-50%, -50%) scale(1); \n            opacity: 0.5; \n        }\n        50% { \n            transform: translate(-50%, -50%) scale(1.2); \n            opacity: 0.7; \n        }\n    }\n\n    .final-cta-content {\n        position: relative;\n        z-index: 2;\n    }\n\n    .final-cta-title {\n        font-family: var(--display);\n        font-size: clamp(2rem, 6vw, 4rem);\n        margin-bottom: 2rem;\n        font-weight: 400;\n        background: linear-gradient(135deg, \n            var(--accent-platinum) 0%, \n            var(--text-primary) 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n    }\n\n    .final-cta-subtitle {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .final-cta-email {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        color: var(--accent-silver);\n        text-decoration: none;\n        border-bottom: 1px solid var(--accent-silver);\n        transition: all 0.3s ease;\n        padding-bottom: 0.25rem;\n    }\n\n    .final-cta-email:hover {\n        color: var(--accent-platinum);\n        border-color: var(--accent-platinum);\n    }\n\n    \/* Footer *\/\n    .footer {\n        padding: 3rem 5%;\n        background: var(--bg-primary);\n        border-top: 1px solid var(--border-color);\n        text-align: center;\n    }\n\n    .footer-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .footer-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .footer-links a:hover {\n        color: var(--accent-silver);\n    }\n\n    .footer-copyright {\n        font-size: 0.85rem;\n        color: var(--text-muted);\n        letter-spacing: 1px;\n    }\n\n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .header {\n            padding: 1rem 3%;\n        }\n\n        .nav {\n            gap: 1rem;\n        }\n\n        .nav a {\n            font-size: 0.75rem;\n        }\n\n        .section {\n            padding: 4rem 3%;\n        }\n\n        .hero-title {\n            font-size: 2.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-grid {\n            grid-template-columns: repeat(2, 1fr);\n            padding: 2rem 1rem;\n        }\n\n        .spaces-list {\n            flex-direction: column;\n            align-items: center;\n        }\n\n        .brand-names {\n            font-size: 1.1rem;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- Fixed Header --\u003e\n\u003cheader class=\"header\"\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN\u003c\/a\u003e\n    \u003cnav class=\"nav\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/nav\u003e\n\u003c\/header\u003e\n\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"fashion-accent\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"hero-subtitle\"\u003eKasian Art Studio\u003c\/p\u003e\n        \u003ch1 class=\"hero-title\"\u003eExecutive Noir\u003c\/h1\u003e\n        \u003cp class=\"hero-edition\"\u003eLimited Edition of 25\u003c\/p\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Executive%20Noir\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"section-title fade-in\"\u003eFashion Authority Study\u003c\/div\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"video-container fade-in\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/muKzYotuzd4\" title=\"Executive Noir — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"section description\"\u003e\n    \u003cp class=\"description-text fade-in\"\u003e\n        Where confidence meets couture—a striking monochrome portrait of executive elegance, sophisticated power, and timeless fashion authority.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"section backstory\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eThe Story\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            Executive Noir captures the intersection of power and polish. A figure seated in refined composure, sunglasses shielding identity, body language speaking authority. This is confidence without announcement.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            The monochrome palette strips away distraction, leaving only form, gesture, and presence. Black against neutral gray—sharp, decisive, unapologetic.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-highlight fade-in\"\u003e\n            \"Style doesn't follow.\u003cbr\u003eIt leads.\"\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            This work was created for interiors where elegance is expected and power is inherent—executive offices, luxury penthouses, private dressing rooms, and fashion-forward residential spaces.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            The figure's anonymity becomes universality. She represents not a person, but a mindset—controlled, composed, commanding.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text fade-in\"\u003e\n            This is art for those who understand that presence doesn't need explanation. It simply is.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eOnly 25 prints will ever exist. Each edition is individually numbered, signed, and authenticated with museum-grade provenance documentation for discerning collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade archival pigment inks ensure 100+ year color stability with exceptional tonal depth in black and white. Premium substrates maintain crisp clarity and elegant finish.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eFashion-inspired executive portraiture maintains strong demand among collectors who value the intersection of power, elegance, and sophisticated visual storytelling.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"edition-grid fade-in\"\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e25\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eCollector Grade\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"section pairings\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eRed Sole Authority — Executive Study No. I\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA complementary study of power through iconic fashion symbolism. Together, these works create a sophisticated dialogue of executive presence ideal for office suites and luxury residential spaces.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eCorridor of Command — Executive Silence No. III\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eAn architectural portrait exploring arrival and authority. When paired with Executive Noir, these pieces form a powerful series perfect for high-level executive environments.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\"\u003e\n    \u003cdiv class=\"collection-cta-content\"\u003e\n        \u003ch2 class=\"collection-title fade-in\"\u003eBlack \u0026amp; White Luxury Collection\u003c\/h2\u003e\n        \u003cp class=\"collection-subtitle fade-in\"\u003eExplore the complete collection of refined monochrome artworks where elegance meets authority, curated for collectors who value timeless sophistication and powerful visual presence.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button fade-in\"\u003eView Collection\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"section investment\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eDesigned For Elegance\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003cp class=\"investment-text fade-in\"\u003e\n            This work is curated for spaces where sophistication is celebrated—interiors that value the intersection of fashion, power, and timeless visual elegance.\n        \u003c\/p\u003e\n        \u003cdiv class=\"spaces-list\"\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eExecutive Offices\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eLuxury Penthouses\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003ePrivate Dressing Rooms\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eFashion-Forward Residences\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eBoutique Hotels\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eExecutive Suites\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eLuxury Retail Spaces\u003c\/span\u003e\n            \u003cspan class=\"space-tag fade-in\"\u003eCollector Galleries\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp class=\"brand-strip-title\"\u003eTrusted by the World's Finest\u003c\/p\u003e\n    \u003cp class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003cdiv class=\"final-cta-content\"\u003e\n        \u003ch2 class=\"final-cta-title fade-in\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n        \u003cp class=\"final-cta-subtitle fade-in\"\u003eLimited availability. Museum-grade provenance. Collector-ready documentation.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Collector%20Inquiry:%20Executive%20Noir\" class=\"final-cta-email fade-in\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-links\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\"\u003ePinterest\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eStudio\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"footer-copyright\"\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":47220285374629,"sku":"5052585_16039","price":11264.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_4340.png?v=1765665607"},{"product_id":"velvet-departure","title":"Velvet Departure — The Art of Leaving Without Goodbye","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eVelvet Departure — Luxury Black \u0026amp; White Feminine Power Art Print\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade artwork capturing feminine power, restraint, and the elegance of departure. Limited edition fine art print for luxury interiors and collectors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700;800\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-card: #111111;\n        --text-light: #f5f5f5;\n        --text-muted: #a0a0a0;\n        --accent: #8B7355;\n        --accent-hover: #a38869;\n        --border: rgba(255, 255, 255, 0.1);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-light);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Typography *\/\n    h1, h2, h3, h4 {\n        font-family: 'Playfair Display', serif;\n        font-weight: 600;\n        letter-spacing: 0.5px;\n    }\n\n    .serif {\n        font-family: 'Cormorant Garamond', serif;\n    }\n\n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        z-index: 1000;\n        border-bottom: 1px solid var(--border);\n    }\n\n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 700;\n        letter-spacing: 2px;\n        color: var(--text-light);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-muted);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--accent);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        padding-top: 80px;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(circle at 20% 30%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),\n            radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n\n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.5; }\n        50% { opacity: 1; }\n    }\n\n    .hero-content {\n        text-align: center;\n        z-index: 2;\n        max-width: 900px;\n        padding: 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.95rem;\n        letter-spacing: 3px;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n        text-transform: uppercase;\n        animation: fadeIn 1.5s ease-out 0.3s both;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .hero h1 {\n        font-size: 4.5rem;\n        font-weight: 700;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n        background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        background-clip: text;\n        animation: fadeInUp 1.2s ease-out 0.2s both;\n    }\n\n    .edition-tag {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        font-style: italic;\n        animation: fadeIn 1.5s ease-out 0.5s both;\n    }\n\n    .hero-tagline {\n        font-size: 1.4rem;\n        color: var(--text-muted);\n        margin-bottom: 3rem;\n        font-weight: 300;\n        letter-spacing: 1px;\n        animation: fadeIn 1.5s ease-out 0.7s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--accent);\n        border: 2px solid var(--accent);\n        text-decoration: none;\n        font-size: 0.95rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        animation: fadeIn 1.5s ease-out 0.9s both;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    \/* Section Containers *\/\n    .section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-size: 3rem;\n        margin-bottom: 1rem;\n        text-align: center;\n    }\n\n    .section-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.2rem;\n        color: var(--text-muted);\n        text-align: center;\n        margin-bottom: 4rem;\n        font-style: italic;\n    }\n\n    \/* Divider *\/\n    .divider {\n        width: 80px;\n        height: 2px;\n        background: var(--accent);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--bg-card);\n        padding: 6rem 2rem;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border-radius: 8px;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        border: none;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        background: var(--bg-dark);\n    }\n\n    .description-content {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .short-description {\n        font-size: 1.5rem;\n        color: var(--accent);\n        font-weight: 500;\n        margin-bottom: 2rem;\n        line-height: 1.6;\n    }\n\n    .long-description {\n        font-size: 1.1rem;\n        color: var(--text-muted);\n        line-height: 1.9;\n        text-align: left;\n    }\n\n    .long-description p {\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        background: var(--bg-card);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.4rem;\n        line-height: 2;\n        color: var(--text-light);\n        text-align: center;\n        font-style: italic;\n    }\n\n    .backstory-text p {\n        margin-bottom: 1.5rem;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        background: var(--bg-card);\n        padding: 3rem 2rem;\n        border-radius: 8px;\n        border: 1px solid var(--border);\n        transition: transform 0.3s ease, border-color 0.3s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--accent);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n    }\n\n    .feature-title {\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-light);\n    }\n\n    .feature-description {\n        color: var(--text-muted);\n        line-height: 1.8;\n    }\n\n    \/* Stats Grid *\/\n    .stats-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        background: var(--bg-card);\n        padding: 4rem;\n        border-radius: 8px;\n    }\n\n    .stat-item {\n        text-align: center;\n        padding: 2rem;\n        border-right: 1px solid var(--border);\n    }\n\n    .stat-item:last-child {\n        border-right: none;\n    }\n\n    .stat-value {\n        font-size: 2.5rem;\n        font-weight: 700;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        background: var(--bg-card);\n        border-radius: 8px;\n        overflow: hidden;\n        border: 1px solid var(--border);\n        transition: transform 0.3s ease, box-shadow 0.3s ease;\n    }\n\n    .pairing-card:hover {\n        transform: translateY(-10px);\n        box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);\n    }\n\n    .pairing-content {\n        padding: 2rem;\n    }\n\n    .pairing-title {\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        color: var(--text-light);\n    }\n\n    .pairing-description {\n        color: var(--text-muted);\n        line-height: 1.8;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-card) 0%, #1a1511 100%);\n        padding: 6rem 2rem;\n        text-align: center;\n    }\n\n    .collection-cta h2 {\n        font-size: 3rem;\n        margin-bottom: 2rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-muted);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        background: var(--bg-dark);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--bg-card);\n        border: 1px solid var(--accent);\n        border-radius: 50px;\n        font-size: 0.95rem;\n        color: var(--text-light);\n        letter-spacing: 1px;\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        background: var(--bg-card);\n        padding: 4rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--border);\n        border-bottom: 1px solid var(--border);\n    }\n\n    .brand-strip-title {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n\n    .brand-names {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        color: var(--accent);\n        letter-spacing: 3px;\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 8rem 2rem;\n        text-align: center;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1511 50%, #0a0a0a 100%);\n    }\n\n    .final-cta h2 {\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.3rem;\n        color: var(--text-muted);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    footer {\n        background: var(--bg-card);\n        padding: 3rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--border);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-muted);\n        text-decoration: none;\n        font-size: 1.5rem;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent);\n    }\n\n    .footer-text {\n        color: var(--text-muted);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n    }\n\n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .hero h1 {\n            font-size: 2.5rem;\n        }\n\n        .section-title {\n            font-size: 2rem;\n        }\n\n        .nav-links {\n            display: none;\n        }\n\n        .stats-grid {\n            grid-template-columns: 1fr;\n            padding: 2rem;\n        }\n\n        .stat-item {\n            border-right: none;\n            border-bottom: 1px solid var(--border);\n        }\n\n        .stat-item:last-child {\n            border-bottom: none;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- Header --\u003e\n\u003cheader\u003e\n    \u003cnav\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cul class=\"nav-links\"\u003e\n            \u003cli\u003e\u003ca href=\"#about\"\u003eABOUT\u003c\/a\u003e\u003c\/li\u003e\n            \u003cli\u003e\u003ca href=\"#features\"\u003eFEATURES\u003c\/a\u003e\u003c\/li\u003e\n            \u003cli\u003e\u003ca href=\"#collection\"\u003eCOLLECTION\u003c\/a\u003e\u003c\/li\u003e\n            \u003cli\u003e\u003ca href=\"#inquire\"\u003eINQUIRE\u003c\/a\u003e\u003c\/li\u003e\n        \u003c\/ul\u003e\n    \u003c\/nav\u003e\n\u003c\/header\u003e\n\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"hero-subtitle\"\u003eTHE ART OF LEAVING WITHOUT GOODBYE\u003c\/p\u003e\n        \u003ch1\u003eVelvet Departure\u003c\/h1\u003e\n        \u003cp class=\"edition-tag\"\u003eLimited Edition of 12\u003c\/p\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Velvet%20Departure\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/MXUcFyCDUmE\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"section description-section\" id=\"about\"\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp class=\"short-description\"\u003ePower is most dangerous when it turns its back.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"long-description\"\u003e\n            \u003cp\u003e\u003cem\u003eVelvet Departure — The Art of Leaving Without Goodbye\u003c\/em\u003e is an ode to controlled exit—the moment after the decision has already been made.\u003c\/p\u003e\n            \n            \u003cp\u003eThe figure is turned away.\u003cbr\u003e\n            Her back exposed.\u003cbr\u003e\n            Her gown dissolving into shadow.\u003cbr\u003e\n            Nothing here asks to be seen—yet everything commands attention.\u003c\/p\u003e\n            \n            \u003cp\u003eRendered in tonal grayscale with deep black saturation, the artwork emphasizes spine, shoulder, and negative space. The fabric moves like smoke. The body remains still. This contrast is intentional: motion belongs to the world she leaves behind.\u003c\/p\u003e\n            \n            \u003cp\u003eThis piece is about restraint, not seduction.\u003cbr\u003e\n            Confidence, not confrontation.\u003cbr\u003e\n            Finality, without explanation.\u003c\/p\u003e\n            \n            \u003cp\u003eDesigned for luxury corridors, penthouse bedrooms, executive dressing rooms, boutique hotel suites, and collector hallways, this artwork creates atmosphere rather than decoration. It slows the room. It changes the temperature.\u003c\/p\u003e\n            \n            \u003cp\u003eShe is not walking away in weakness.\u003cbr\u003e\n            She is departing because she already won.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"section backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Story\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"backstory-text\"\u003e\n            \u003cp\u003eShe didn't turn away to be chased.\u003c\/p\u003e\n            \u003cp\u003eShe turned away because the story was already finished.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"section\" id=\"features\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eMuseum-Grade Quality\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle fade-in\"\u003eCrafted for permanence, designed for impact\u003c\/p\u003e\n    \n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 12 prints will ever exist. Each piece is individually numbered and accompanied by a Certificate of Authenticity, ensuring exclusivity and long-term value for discerning collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Printed with ultra-rich archival pigment inks on premium cotton rag or satin archival paper for exceptional tonal depth and preservation.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eFeminine power portraits maintain strong demand in luxury residential and hospitality markets. This piece commands attention in executive interiors where atmosphere and authority matter most.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Details --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"stats-grid fade-in\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e12\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e1\/1\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eUniquely Numbered\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"section\" style=\"background: var(--bg-card);\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle fade-in\"\u003eCreate a narrative sequence of power\u003c\/p\u003e\n    \n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003cdiv class=\"pairing-content\"\u003e\n                \u003ch3 class=\"pairing-title\"\u003eExecutive Muse\u003c\/h3\u003e\n                \u003cp class=\"pairing-description\"\u003eThe Woman Who Owns the Room. Perfect as the opening statement—her arrival commanding immediate attention before the quiet exit of Velvet Departure.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003cdiv class=\"pairing-content\"\u003e\n                \u003ch3 class=\"pairing-title\"\u003eCorridor Silence\u003c\/h3\u003e\n                \u003cp class=\"pairing-description\"\u003ePower in Passing. Creates a trilogy of movement: arrival, dominance, departure. The complete arc of sovereign presence.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003cp style=\"text-align: center; margin-top: 3rem; color: var(--text-muted); font-style: italic;\"\u003e\n        Perfect as a sequence narrative: arrival → dominance → departure\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection Exploration --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2 class=\"fade-in\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"fade-in\"\u003eDiscover more works from the Black \u0026amp; White Luxury Collection—a curated series exploring restraint, elegance, and the architecture of feminine power.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"section investment-section\"\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eInvestment-Grade Positioning\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle fade-in\"\u003eDesigned for spaces where atmosphere matters more than decoration\u003c\/p\u003e\n    \n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eLuxury Hotel Corridors\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePenthouse Bedrooms\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Dressing Rooms\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eCollector Hallways\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Galleries\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp class=\"brand-strip-title\"\u003eDesigned for the world's most discerning spaces\u003c\/p\u003e\n    \u003cp class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2 class=\"fade-in\"\u003eBegin Your Acquisition\u003c\/h2\u003e\n    \u003cp class=\"fade-in\"\u003eOnly 12 editions available worldwide\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Velvet%20Departure\" class=\"cta-button\"\u003eContact Kristina\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" aria-label=\"Instagram\"\u003e📷\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\" aria-label=\"Facebook\"\u003ef\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\" aria-label=\"Pinterest\"\u003eP\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-text\"\u003e© 2025 KASIAN ART STUDIO. ALL RIGHTS RESERVED.\u003c\/p\u003e\n        \u003cp class=\"footer-text\" style=\"margin-top: 1rem;\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    \/\/ Observe all fade-in elements\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":47307124637861,"sku":"3880716_16039","price":11424.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_4357.png?v=1765840543"},{"product_id":"framed-canvas-15","title":"Poised in Silence — The Woman Who Never Asks","description":"\u003cbody\u003e\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Feminine Wall Art | Poised in Silence — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade feminine wall art capturing power, elegance, and composure for luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-secondary: #1a1a1a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #d4a574;\n        --accent-hover: #e5b685;\n        --divider: rgba(212, 165, 116, 0.2);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* HEADER *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(212, 165, 116, 0.1);\n        padding: 1.5rem 5%;\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--accent);\n        text-decoration: none;\n        transition: all 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-hover);\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n        text-transform: uppercase;\n    }\n\n    nav a:hover {\n        color: var(--accent);\n    }\n\n    \/* HERO SECTION *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        padding: 8rem 5% 4rem;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 600px;\n        height: 600px;\n        background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);\n        animation: pulse 8s ease-in-out infinite;\n    }\n\n    @keyframes pulse {\n        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }\n        50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.9rem;\n        letter-spacing: 4px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 4.5rem;\n        font-weight: 600;\n        line-height: 1.2;\n        margin-bottom: 1.5rem;\n        color: var(--text-primary);\n        letter-spacing: -1px;\n    }\n\n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--accent);\n        border: 2px solid var(--accent);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        font-weight: 500;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n    }\n\n    \/* SECTION STYLES *\/\n    section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 600;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n    }\n\n    .section-subtitle {\n        text-align: center;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        max-width: 700px;\n        margin: 0 auto 4rem;\n        line-height: 1.8;\n    }\n\n    .divider {\n        width: 100px;\n        height: 2px;\n        background: var(--accent);\n        margin: 4rem auto;\n    }\n\n    \/* VIDEO SECTION *\/\n    .video-section {\n        background: var(--bg-secondary);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* DESCRIPTION SECTION *\/\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .description-content p {\n        margin-bottom: 1.5rem;\n    }\n\n    .description-highlight {\n        color: var(--text-primary);\n        font-weight: 500;\n    }\n\n    \/* BACKSTORY SECTION *\/\n    .backstory-section {\n        background: var(--bg-secondary);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.4rem;\n        line-height: 2.2;\n        color: var(--text-secondary);\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    \/* FEATURES GRID *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-10px);\n        border-color: var(--accent);\n        box-shadow: 0 20px 40px rgba(212, 165, 116, 0.1);\n    }\n\n    .feature-icon {\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n        line-height: 1.8;\n    }\n\n    \/* EDITION DETAILS *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 2rem 1rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat:last-child {\n        border-right: none;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n        font-weight: 600;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n    }\n\n    \/* PAIRINGS SECTION *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1rem;\n    }\n\n    \/* COLLECTION CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-secondary) 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 5%;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* INVESTMENT SECTION *\/\n    .investment-section {\n        background: var(--bg-dark);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--bg-secondary);\n        border: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent);\n        color: var(--accent);\n    }\n\n    \/* LUXURY BRANDS *\/\n    .luxury-brands {\n        background: var(--bg-secondary);\n        padding: 4rem 5%;\n        text-align: center;\n    }\n\n    .luxury-brands h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-secondary);\n        font-weight: 400;\n    }\n\n    .brand-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        color: var(--accent);\n        letter-spacing: 3px;\n    }\n\n    \/* FINAL CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        text-align: center;\n        background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-secondary) 100%);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* FOOTER *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 4rem 5%;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n    }\n\n    .footer-section h4 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n    }\n\n    .footer-section p,\n    .footer-section a {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        line-height: 2;\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .footer-section a:hover {\n        color: var(--accent);\n    }\n\n    .social-links {\n        display: flex;\n        gap: 1.5rem;\n        margin-top: 1rem;\n    }\n\n    .social-links a {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        transition: all 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent);\n        transform: translateY(-3px);\n    }\n\n    .copyright {\n        text-align: center;\n        margin-top: 3rem;\n        padding-top: 2rem;\n        border-top: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n    }\n\n    \/* RESPONSIVE *\/\n    @media (max-width: 768px) {\n        .hero-title {\n            font-size: 3rem;\n        }\n\n        .hero-tagline {\n            font-size: 1.3rem;\n        }\n\n        .section-title {\n            font-size: 2.5rem;\n        }\n\n        nav a {\n            margin-left: 1.5rem;\n            font-size: 0.8rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .stat {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat:last-child {\n            border-bottom: none;\n        }\n    }\n\n    \/* SCROLL ANIMATIONS *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- HEADER --\u003e\n\u003cheader\u003e\n    \u003cdiv class=\"header-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cnav\u003e\n            \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n            \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/div\u003e\n\u003c\/header\u003e\n\n\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 15\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003ePoised in Silence\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eThe Woman Who Never Asks\u003c\/p\u003e\n        \u003cp class=\"section-subtitle\"\u003eShe doesn't wait to be chosen. She decides.\u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"cta-button\"\u003eInquire About This Piece\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- VIDEO SECTION --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/hO51CCfpxbw?si=BqrAx1oaDwDbxvkN\" title=\"Poised in Silence\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- DESCRIPTION SECTION --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003ePower Without Permission\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003ePoised in Silence — The Woman Who Never Asks\u003c\/span\u003e is a study in controlled presence.\u003c\/p\u003e\n        \u003cp\u003eShe is seated low, balanced on heels, grounded yet untouchable. One strand of hair falls across her face—not to obscure, but to remind. The gaze is direct. Calm. Unapologetic.\u003c\/p\u003e\n        \u003cp\u003eThere is no excess. No gesture seeking approval. Only certainty.\u003c\/p\u003e\n        \u003cp\u003eRendered in monochromatic tones with sculptural lighting, this piece highlights muscle, posture, and restraint. The body is power. The stillness is authority. The silence is intentional.\u003c\/p\u003e\n        \u003cp\u003eThis artwork belongs in spaces where decisions are made quietly—\u003cspan class=\"description-highlight\"\u003eexecutive offices, penthouse dressing rooms, private corridors, luxury hotel suites,\u003c\/span\u003e and collector interiors that understand presence over performance.\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eShe is not posing. She is occupying.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003eThis is femininity without permission.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BACKSTORY SECTION --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Story Behind the Silence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp\u003eShe learned early—\u003c\/p\u003e\n        \u003cp\u003eSilence speaks louder than movement.\u003c\/p\u003e\n        \u003cp\u003eAnd presence never asks permission.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- MUSEUM-GRADE FEATURES --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 15 prints will ever exist. Each piece is numbered and authenticated, ensuring exclusivity and long-term value for discerning collectors.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Ultra-rich archival pigment inks on premium fine art substrates deliver exceptional tonal depth and permanence.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eContemporary feminine portraiture maintains strong demand in luxury markets. This piece is designed for private collections, galleries, and high-end hospitality environments.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- EDITION DETAILS --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e15\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCertificate Included\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- CURATED PAIRINGS --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eDesigned to curate a narrative of command rather than decoration.\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eVelvet Departure\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eThe Art of Leaving Without Goodbye — A study in elegant exit strategy, capturing the moment when presence becomes memory. The perfect complement to controlled power.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Authority\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003ePower Without Explanation — Command that requires no announcement. Together with Poised in Silence, these pieces create an unmistakable narrative of feminine sovereignty.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- COLLECTION CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp\u003eDiscover more works from the Black \u0026amp; White Luxury Collection—contemporary pieces that understand the language of restraint, elegance, and quiet power.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- INVESTMENT POSITIONING --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eThis artwork is created for interiors that value authority, elegance, and restraint over spectacle.\u003c\/div\u003e\n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Offices\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePenthouse Interiors\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Corridors\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eLuxury Hotel Suites\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eCollector Galleries\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eDesigner Showrooms\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- LUXURY BRANDS --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3\u003eTrusted by Leading Luxury Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FINAL CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003eBegin Your Acquisition\u003c\/h2\u003e\n    \u003cp\u003eFor pricing, framing consultations, or custom installation guidance, contact our curatorial team directly.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- FOOTER --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eKasian Art Studio\u003c\/h4\u003e\n            \u003cp\u003eMuseum-grade fine art for luxury interiors, private collectors, and hospitality brands.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eQuick Links\u003c\/h4\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eAll Collections\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout the Artist\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eConnect\u003c\/h4\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"copyright\"\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- SCROLL ANIMATIONS SCRIPT --\u003e\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Default Title","offer_id":47316068991141,"sku":"8696898_16039","price":10284.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_4369.png?v=1766089258"},{"product_id":"veiled-silence","title":"Veiled Silence — Power Unseen","description":"\u003cbody\u003e\n\n\u003cscript async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6523354279554530\" crossorigin=\"anonymous\"\u003e\u003c\/script\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eLuxury Black \u0026amp; White Wall Art | Veiled Silence — Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade black and white artwork curated for luxury hotels, collectors, and refined modern interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --bg-dark: #0a0a0a;\n        --bg-secondary: #1a1a1a;\n        --bg-neutral: #2a2a2a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #d4d4d4;\n        --accent-hover: #e5e5e5;\n        --divider: rgba(212, 212, 212, 0.15);\n    }\n\n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--bg-dark);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* HEADER *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(212, 212, 212, 0.08);\n        padding: 1.5rem 5%;\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--accent);\n        text-decoration: none;\n        transition: all 0.3s ease;\n    }\n\n    .logo:hover {\n        color: var(--accent-hover);\n    }\n\n    nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n        text-transform: uppercase;\n    }\n\n    nav a:hover {\n        color: var(--accent);\n    }\n\n    \/* HERO SECTION *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        padding: 8rem 5% 4rem;\n        position: relative;\n        overflow: hidden;\n        background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);\n    }\n\n    \/* Veil-like semi-transparent overlay - subtle diagonal sweep *\/\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: -30%;\n        right: -20%;\n        width: 80%;\n        height: 160%;\n        background: linear-gradient(120deg, \n            transparent 0%, \n            rgba(212, 212, 212, 0.02) 30%,\n            rgba(212, 212, 212, 0.04) 50%,\n            rgba(212, 212, 212, 0.02) 70%,\n            transparent 100%);\n        transform: rotate(-15deg);\n        animation: veilDrift 18s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    @keyframes veilDrift {\n        0%, 100% { \n            transform: rotate(-15deg) translateX(0);\n            opacity: 0.3;\n        }\n        50% { \n            transform: rotate(-13deg) translateX(-40px);\n            opacity: 0.5;\n        }\n    }\n\n    \/* Subtle shadow accent mimicking hat brim *\/\n    .hero::after {\n        content: '';\n        position: absolute;\n        top: 35%;\n        left: 50%;\n        transform: translateX(-50%);\n        width: 600px;\n        height: 2px;\n        background: linear-gradient(90deg, \n            transparent 0%,\n            rgba(212, 212, 212, 0.1) 50%,\n            transparent 100%);\n        animation: shadowPulse 8s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    @keyframes shadowPulse {\n        0%, 100% { \n            opacity: 0.2;\n            width: 600px;\n        }\n        50% { \n            opacity: 0.4;\n            width: 650px;\n        }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        max-width: 900px;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .hero-subtitle {\n        font-size: 0.9rem;\n        letter-spacing: 4px;\n        color: var(--accent);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 4.5rem;\n        font-weight: 300;\n        line-height: 1.2;\n        margin-bottom: 1.5rem;\n        color: var(--text-primary);\n        letter-spacing: 3px;\n    }\n\n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: transparent;\n        color: var(--accent);\n        border: 1px solid var(--accent);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n        font-weight: 400;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--accent);\n        transition: left 0.4s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    .cta-button:hover {\n        color: var(--bg-dark);\n    }\n\n    \/* SECTION STYLES *\/\n    section {\n        padding: 6rem 5%;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 300;\n        text-align: center;\n        margin-bottom: 3rem;\n        color: var(--text-primary);\n        letter-spacing: 2px;\n    }\n\n    .section-subtitle {\n        text-align: center;\n        font-size: 1.1rem;\n        color: var(--text-secondary);\n        max-width: 700px;\n        margin: 0 auto 4rem;\n        line-height: 1.8;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent);\n        margin: 4rem auto;\n    }\n\n    \/* VIDEO SECTION *\/\n    .video-section {\n        background: var(--bg-neutral);\n        padding: 6rem 5%;\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* DESCRIPTION SECTION *\/\n    .description-content {\n        max-width: 900px;\n        margin: 0 auto;\n        font-size: 1.1rem;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .description-content p {\n        margin-bottom: 1.5rem;\n    }\n\n    .description-highlight {\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    \/* BACKSTORY SECTION *\/\n    .backstory-section {\n        background: var(--bg-neutral);\n    }\n\n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        line-height: 2.8;\n        color: var(--accent);\n        font-style: italic;\n        text-align: center;\n    }\n\n    .backstory-content p {\n        margin-bottom: 2rem;\n    }\n\n    \/* FEATURES GRID *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2.5rem;\n        background: var(--bg-neutral);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        transform: translateY(-10px);\n        border-color: var(--accent);\n        box-shadow: 0 20px 40px rgba(212, 212, 212, 0.05);\n    }\n\n    .feature-icon {\n        font-size: 2rem;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        font-size: 0.95rem;\n        line-height: 1.8;\n    }\n\n    \/* EDITION DETAILS *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        margin-top: 4rem;\n        padding: 3rem;\n        background: var(--bg-neutral);\n        border: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n        padding: 2rem 1rem;\n        border-right: 1px solid var(--divider);\n    }\n\n    .stat:last-child {\n        border-right: none;\n    }\n\n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n        font-weight: 300;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        color: var(--text-secondary);\n    }\n\n    \/* PAIRINGS SECTION *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .pairing-card {\n        padding: 2.5rem;\n        background: var(--bg-neutral);\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n\n    .pairing-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        color: var(--text-primary);\n        font-weight: 400;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 1rem;\n    }\n\n    \/* COLLECTION CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--bg-neutral) 0%, #0a0a0a 100%);\n        text-align: center;\n        padding: 6rem 5%;\n    }\n\n    .collection-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 1.5rem;\n        font-weight: 400;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* INVESTMENT SECTION *\/\n    .investment-section {\n        background: var(--bg-dark);\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 2rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 1rem 2rem;\n        background: var(--bg-neutral);\n        border: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent);\n        color: var(--accent);\n    }\n\n    \/* LUXURY BRANDS *\/\n    .luxury-brands {\n        background: var(--bg-neutral);\n        padding: 4rem 5%;\n        text-align: center;\n    }\n\n    .luxury-brands h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        margin-bottom: 2rem;\n        color: var(--text-secondary);\n        font-weight: 400;\n    }\n\n    .brand-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.8rem;\n        color: var(--accent);\n        letter-spacing: 3px;\n    }\n\n    \/* FINAL CTA *\/\n    .final-cta {\n        padding: 8rem 5%;\n        text-align: center;\n        background: linear-gradient(135deg, #0a0a0a 0%, var(--bg-neutral) 100%);\n    }\n\n    .final-cta h2 {\n        font-family: 'Playfair Display', serif;\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        font-weight: 400;\n    }\n\n    .final-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* FOOTER *\/\n    footer {\n        background: var(--bg-dark);\n        padding: 4rem 5%;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n        gap: 3rem;\n    }\n\n    .footer-section h4 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n        font-weight: 400;\n    }\n\n    .footer-section p,\n    .footer-section a {\n        color: var(--text-secondary);\n        font-size: 0.9rem;\n        line-height: 2;\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n\n    .footer-section a:hover {\n        color: var(--accent);\n    }\n\n    .social-links {\n        display: flex;\n        gap: 1.5rem;\n        margin-top: 1rem;\n    }\n\n    .social-links a {\n        font-size: 1.5rem;\n        color: var(--text-secondary);\n        transition: all 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--accent);\n        transform: translateY(-3px);\n    }\n\n    .copyright {\n        text-align: center;\n        margin-top: 3rem;\n        padding-top: 2rem;\n        border-top: 1px solid var(--divider);\n        color: var(--text-secondary);\n        font-size: 0.85rem;\n    }\n\n    \/* RESPONSIVE *\/\n    @media (max-width: 768px) {\n        .hero-title {\n            font-size: 3rem;\n        }\n\n        .hero-tagline {\n            font-size: 1.3rem;\n        }\n\n        .section-title {\n            font-size: 2.5rem;\n        }\n\n        nav a {\n            margin-left: 1.5rem;\n            font-size: 0.8rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .stat {\n            border-right: none;\n            border-bottom: 1px solid var(--divider);\n        }\n\n        .stat:last-child {\n            border-bottom: none;\n        }\n    }\n\n    \/* SCROLL ANIMATIONS *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: all 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- HEADER --\u003e\n\u003cheader\u003e\n    \u003cdiv class=\"header-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cnav\u003e\n            \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n            \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n            \u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\n            \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/div\u003e\n\u003c\/header\u003e\n\n\u003c!-- HERO SECTION --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"hero-subtitle\"\u003eLimited Edition of 25\u003c\/div\u003e\n        \u003ch1 class=\"hero-title\"\u003eVeiled Silence\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003ePower Unseen\u003c\/p\u003e\n        \u003cp class=\"section-subtitle\"\u003eElegance that does not ask to be noticed.\u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"cta-button\"\u003eInquire About This Piece\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- VIDEO SECTION --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/tQGSlKGmWg0?si=zNqRO48YqNIvDRGS\" title=\"Veiled Silence\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- DESCRIPTION SECTION --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eAuthority Without Exposure\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eVeiled Silence is an exploration of authority without exposure.\u003c\/span\u003e The eyes are hidden. The voice is unnecessary. What remains is presence—composed, controlled, absolute.\u003c\/p\u003e\n        \u003cp\u003eThis work embodies Kasian Art Studio's signature quiet dominance: femininity rendered as restraint, confidence expressed through what is deliberately withheld. The sweeping hat obscures identity, transforming the subject into an archetype rather than a portrait. \u003cspan class=\"description-highlight\"\u003eShe is not a woman to be read—she is a force to be felt.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003eRendered in monochrome gradients with softened edges, the composition invites stillness and contemplation. The negative space is intentional, allowing luxury interiors to breathe while the artwork anchors the room with subtle command.\u003c\/p\u003e\n        \u003cp\u003eDesigned for collectors, \u003cspan class=\"description-highlight\"\u003eluxury hotels, executive residences, boutique corridors,\u003c\/span\u003e and gallery spaces where understatement is the highest form of power.\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eThis piece does not speak loudly.\u003c\/span\u003e\u003c\/p\u003e\n        \u003cp\u003e\u003cspan class=\"description-highlight\"\u003eIt decides.\u003c\/span\u003e\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BACKSTORY SECTION --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eThe Art of Adjustment\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp\u003eShe does not reveal herself.\u003c\/p\u003e\n        \u003cp\u003eShe allows the world to adjust.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- MUSEUM-GRADE FEATURES --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e—\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 25 prints will ever exist. Each piece is numbered and authenticated, ensuring exclusivity for collectors who value presence, restraint, and emotional sophistication.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e—\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade materials ensure 100+ year longevity. Soft painterly depth and clean contemporary finishes preserve the delicate monochrome gradients essential for this composition.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e—\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eHospitality Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMonochrome portraiture maintains timeless appeal in luxury environments. This piece is designed for boutique hotels, executive offices, fashion houses, and refined residential interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- EDITION DETAILS --\u003e\n\u003csection\u003e\n    \u003ch2 class=\"section-title\"\u003eEdition Details\u003c\/h2\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e25\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eLimited Edition\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYears Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e✓\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eCertificate Included\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- CURATED PAIRINGS --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eTogether, these works form a Quiet Power Series, curated for luxury environments that favor restraint, confidence, and emotional sophistication.\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eSilent Authority\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eThe Kasian Femme Collection — A companion study in controlled presence and feminine command. Together with Veiled Silence, these pieces create a dialogue of power expressed through restraint.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eObscura\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eStudies in Power \u0026amp; Poise — An exploration of identity concealed to reveal essence. Paired with Veiled Silence, these works celebrate the strength found in what remains unsaid.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- COLLECTION CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp\u003eDiscover more works from the Emotional Figurative Collection—pieces that celebrate presence, restraint, and the quiet architecture of power.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- INVESTMENT SECTION --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesigned for Refined Environments\u003c\/h2\u003e\n    \u003cdiv class=\"section-subtitle\"\u003eThis artwork is created for spaces where elegance, restraint, and presence define the aesthetic over noise.\u003c\/div\u003e\n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cdiv class=\"space-tag\"\u003eExecutive Offices\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eBoutique Corridors\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eLuxury Hotels\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePenthouse Dressing Rooms\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003ePrivate Galleries\u003c\/div\u003e\n        \u003cdiv class=\"space-tag\"\u003eFashion Houses\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- LUXURY BRANDS --\u003e\n\u003csection class=\"luxury-brands\"\u003e\n    \u003ch3\u003eTrusted by Leading Luxury Brands\u003c\/h3\u003e\n    \u003cdiv class=\"brand-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FINAL CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003eBegin Your Acquisition\u003c\/h2\u003e\n    \u003cp\u003eFor pricing, framing consultations for monochrome portraiture, or installation guidance for boutique hospitality spaces, contact our curatorial team.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- FOOTER --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eKasian Art Studio\u003c\/h4\u003e\n            \u003cp\u003eMuseum-grade fine art for luxury interiors, private collectors, and hospitality brands.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eQuick Links\u003c\/h4\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eAll Collections\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout the Artist\u003c\/a\u003e\u003c\/p\u003e\n            \u003cp\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-section\"\u003e\n            \u003ch4\u003eConnect\u003c\/h4\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"copyright\"\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- SCROLL ANIMATIONS SCRIPT --\u003e\n\u003cscript\u003e\n    \/\/ Smooth scroll for navigation links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\n    \/\/ Fade-in animation on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header background on scroll\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('header');\n        if (window.scrollY \u003e 100) {\n            header.style.background = 'rgba(10, 10, 10, 0.98)';\n        } else {\n            header.style.background = 'rgba(10, 10, 10, 0.95)';\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47317421883557,"sku":"1445657_16039","price":10224.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47317421916325,"sku":"1445657_15700","price":10224.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/IMG_4399.png?v=1766177108"},{"product_id":"crimson-vow","title":"Crimson Vow — An Intimate Gesture","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eCrimson Vow — Luxury Romantic Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade figurative artwork with crimson accents, curated for luxury hotels, collectors, and refined interiors. Limited Edition of 20.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@200;300;400\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    :root {\n        --deep-black: #0a0a0a;\n        --charcoal: #1a1a1a;\n        --warm-gray: #2a2a2a;\n        --soft-gray: #4a4a4a;\n        --light-gray: #c8c8c8;\n        --off-white: #f5f5f5;\n        --crimson: #8B0000;\n        --crimson-hover: #a01010;\n        --crimson-light: rgba(139, 0, 0, 0.15);\n        --gold-accent: #c9a227;\n    }\n    \n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n    \n    html {\n        scroll-behavior: smooth;\n    }\n    \n    body {\n        font-family: 'Montserrat', sans-serif;\n        background-color: var(--deep-black);\n        color: var(--off-white);\n        line-height: 1.7;\n        overflow-x: hidden;\n    }\n    \n    \/* Typography *\/\n    h1, h2, h3, h4, h5, h6 {\n        font-family: 'Playfair Display', serif;\n        font-weight: 400;\n        letter-spacing: 0.02em;\n    }\n    \n    .serif-text {\n        font-family: 'Cormorant Garamond', serif;\n    }\n    \n    \/* Header *\/\n    header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 100%;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid rgba(139, 0, 0, 0.1);\n        transition: all 0.3s ease;\n    }\n    \n    header.scrolled {\n        background: rgba(10, 10, 10, 0.98);\n        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);\n    }\n    \n    nav {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 3rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n    \n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.4rem;\n        font-weight: 600;\n        letter-spacing: 0.15em;\n        color: var(--off-white);\n        text-decoration: none;\n        transition: color 0.3s ease;\n    }\n    \n    .logo:hover {\n        color: var(--crimson);\n    }\n    \n    .nav-links {\n        display: flex;\n        gap: 3rem;\n        list-style: none;\n    }\n    \n    .nav-links a {\n        font-size: 0.9rem;\n        font-weight: 300;\n        letter-spacing: 0.1em;\n        text-transform: uppercase;\n        color: var(--light-gray);\n        text-decoration: none;\n        transition: color 0.3s ease;\n        position: relative;\n    }\n    \n    .nav-links a::after {\n        content: '';\n        position: absolute;\n        bottom: -5px;\n        left: 0;\n        width: 0;\n        height: 1px;\n        background: var(--crimson);\n        transition: width 0.3s ease;\n    }\n    \n    .nav-links a:hover {\n        color: var(--off-white);\n    }\n    \n    .nav-links a:hover::after {\n        width: 100%;\n    }\n    \n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);\n    }\n    \n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),\n            radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n    \n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.5; }\n        50% { opacity: 1; }\n    }\n    \n    .hero-content {\n        text-align: center;\n        z-index: 2;\n        max-width: 900px;\n        padding: 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n    \n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n    \n    .hero-title {\n        font-size: 5rem;\n        font-weight: 300;\n        margin-bottom: 1rem;\n        letter-spacing: 0.03em;\n        animation: fadeInUp 1.2s ease-out 0.2s backwards;\n    }\n    \n    .hero-subtitle {\n        font-size: 1.8rem;\n        font-family: 'Cormorant Garamond', serif;\n        font-style: italic;\n        color: var(--crimson);\n        margin-bottom: 2rem;\n        animation: fadeInUp 1.2s ease-out 0.4s backwards;\n    }\n    \n    .edition-badge {\n        display: inline-block;\n        padding: 0.7rem 1.8rem;\n        border: 1px solid var(--crimson);\n        font-size: 0.85rem;\n        letter-spacing: 0.15em;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        animation: fadeInUp 1.2s ease-out 0.6s backwards;\n        transition: all 0.3s ease;\n    }\n    \n    .edition-badge:hover {\n        background: var(--crimson-light);\n        border-color: var(--crimson-hover);\n    }\n    \n    .tagline {\n        font-size: 1.1rem;\n        letter-spacing: 0.2em;\n        text-transform: uppercase;\n        color: var(--light-gray);\n        margin-bottom: 3rem;\n        font-weight: 200;\n        animation: fadeInUp 1.2s ease-out 0.8s backwards;\n    }\n    \n    .cta-button {\n        display: inline-block;\n        padding: 1.2rem 3rem;\n        background: var(--crimson);\n        color: var(--off-white);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 0.15em;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        border: 2px solid var(--crimson);\n        animation: fadeInUp 1.2s ease-out 1s backwards;\n        position: relative;\n        overflow: hidden;\n    }\n    \n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        width: 0;\n        height: 0;\n        border-radius: 50%;\n        background: var(--crimson-hover);\n        transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;\n        transform: translate(-50%, -50%);\n        z-index: 0;\n    }\n    \n    .cta-button:hover::before {\n        width: 300%;\n        height: 300%;\n    }\n    \n    .cta-button span {\n        position: relative;\n        z-index: 1;\n    }\n    \n    .cta-button:hover {\n        border-color: var(--crimson-hover);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);\n    }\n    \n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        animation: bounce 2s infinite;\n    }\n    \n    @keyframes bounce {\n        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }\n        40% { transform: translateX(-50%) translateY(-10px); }\n        60% { transform: translateX(-50%) translateY(-5px); }\n    }\n    \n    .scroll-indicator::after {\n        content: '↓';\n        font-size: 2rem;\n        color: var(--crimson);\n        opacity: 0.6;\n    }\n    \n    \/* Section Base Styles *\/\n    section {\n        padding: 8rem 3rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n    \n    .section-title {\n        font-size: 3rem;\n        text-align: center;\n        margin-bottom: 1rem;\n        font-weight: 300;\n    }\n    \n    .section-subtitle {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.3rem;\n        text-align: center;\n        color: var(--light-gray);\n        margin-bottom: 4rem;\n        font-style: italic;\n    }\n    \n    \/* Divider *\/\n    .divider {\n        width: 80px;\n        height: 1px;\n        background: linear-gradient(to right, transparent, var(--crimson), transparent);\n        margin: 4rem auto;\n    }\n    \n    \/* Video Section *\/\n    .video-section {\n        background: var(--charcoal);\n        padding: 8rem 3rem;\n    }\n    \n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border-radius: 2px;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n    \n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n    \n    \/* Description Section *\/\n    .description-section {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n    \n    .description-text {\n        font-size: 1.15rem;\n        line-height: 2;\n        color: var(--light-gray);\n        text-align: center;\n        font-weight: 300;\n    }\n    \n    .description-text strong {\n        color: var(--off-white);\n        font-weight: 400;\n    }\n    \n    \/* Backstory Section *\/\n    .backstory-section {\n        background: linear-gradient(to bottom, var(--deep-black), var(--charcoal));\n        position: relative;\n        overflow: hidden;\n    }\n    \n    .backstory-section::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 50%;\n        transform: translateX(-50%);\n        width: 1px;\n        height: 100%;\n        background: linear-gradient(to bottom, transparent, var(--crimson), transparent);\n        opacity: 0.3;\n    }\n    \n    .backstory-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n    \n    .backstory-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.35rem;\n        line-height: 2.2;\n        color: var(--light-gray);\n        text-align: center;\n        margin-bottom: 2rem;\n    }\n    \n    .backstory-text:first-of-type::first-letter {\n        font-size: 4rem;\n        line-height: 1;\n        float: left;\n        margin: 0.1rem 0.2rem 0 0;\n        color: var(--crimson);\n        font-weight: 500;\n    }\n    \n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(3, 1fr);\n        gap: 4rem;\n        margin-top: 5rem;\n    }\n    \n    .feature-card {\n        text-align: center;\n        padding: 3rem 2rem;\n        background: var(--charcoal);\n        border: 1px solid rgba(139, 0, 0, 0.1);\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n    \n    .feature-card::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 3px;\n        background: linear-gradient(to right, var(--crimson), transparent);\n        transform: translateX(-100%);\n        transition: transform 0.6s ease;\n    }\n    \n    .feature-card:hover::before {\n        transform: translateX(0);\n    }\n    \n    .feature-card:hover {\n        border-color: var(--crimson);\n        transform: translateY(-5px);\n        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);\n    }\n    \n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--crimson);\n    }\n    \n    .feature-title {\n        font-size: 1.3rem;\n        margin-bottom: 1rem;\n        letter-spacing: 0.05em;\n    }\n    \n    .feature-description {\n        font-size: 0.95rem;\n        line-height: 1.8;\n        color: var(--light-gray);\n        font-weight: 300;\n    }\n    \n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(4, 1fr);\n        gap: 3rem;\n        margin-top: 5rem;\n        padding: 4rem;\n        background: var(--charcoal);\n        border-top: 2px solid var(--crimson);\n        border-bottom: 2px solid var(--crimson);\n    }\n    \n    .stat-item {\n        text-align: center;\n    }\n    \n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--crimson);\n        display: block;\n        margin-bottom: 0.5rem;\n    }\n    \n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 0.1em;\n        text-transform: uppercase;\n        color: var(--light-gray);\n    }\n    \n    \/* Pairings Section *\/\n    .pairings-section {\n        background: var(--charcoal);\n    }\n    \n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(2, 1fr);\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n    \n    .pairing-card {\n        background: var(--deep-black);\n        padding: 3rem;\n        border: 1px solid rgba(139, 0, 0, 0.15);\n        transition: all 0.4s ease;\n        position: relative;\n    }\n    \n    .pairing-card::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 0;\n        width: 0;\n        height: 2px;\n        background: var(--crimson);\n        transition: width 0.6s ease;\n    }\n    \n    .pairing-card:hover::after {\n        width: 100%;\n    }\n    \n    .pairing-card:hover {\n        border-color: var(--crimson);\n        transform: translateX(10px);\n    }\n    \n    .pairing-title {\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n        letter-spacing: 0.05em;\n    }\n    \n    .pairing-description {\n        font-size: 1rem;\n        line-height: 1.9;\n        color: var(--light-gray);\n    }\n    \n    \/* Collection CTA *\/\n    .collection-cta {\n        background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);\n        text-align: center;\n        position: relative;\n    }\n    \n    .collection-cta::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 70%);\n    }\n    \n    .collection-content {\n        position: relative;\n        z-index: 2;\n    }\n    \n    \/* Investment Section *\/\n    .investment-section {\n        background: var(--deep-black);\n    }\n    \n    .investment-content {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n    \n    .space-tag {\n        padding: 0.8rem 1.5rem;\n        background: var(--charcoal);\n        border: 1px solid rgba(139, 0, 0, 0.2);\n        font-size: 0.85rem;\n        letter-spacing: 0.1em;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n    }\n    \n    .space-tag:hover {\n        background: var(--crimson-light);\n        border-color: var(--crimson);\n        transform: translateY(-2px);\n    }\n    \n    \/* Brand Strip *\/\n    .brand-strip {\n        background: var(--charcoal);\n        padding: 4rem 3rem;\n        text-align: center;\n        border-top: 1px solid rgba(139, 0, 0, 0.1);\n        border-bottom: 1px solid rgba(139, 0, 0, 0.1);\n    }\n    \n    .brand-title {\n        font-size: 0.85rem;\n        letter-spacing: 0.2em;\n        text-transform: uppercase;\n        color: var(--light-gray);\n        margin-bottom: 2rem;\n    }\n    \n    .brand-logos {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        letter-spacing: 0.3em;\n        color: var(--off-white);\n        opacity: 0.6;\n    }\n    \n    \/* Final CTA *\/\n    .final-cta {\n        background: linear-gradient(to bottom, var(--deep-black), var(--charcoal));\n        text-align: center;\n        padding: 10rem 3rem;\n    }\n    \n    .final-cta-title {\n        font-size: 3.5rem;\n        margin-bottom: 2rem;\n        font-weight: 300;\n    }\n    \n    .final-cta-text {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.4rem;\n        color: var(--light-gray);\n        margin-bottom: 3rem;\n        font-style: italic;\n    }\n    \n    \/* Footer *\/\n    footer {\n        background: var(--deep-black);\n        padding: 4rem 3rem 2rem;\n        border-top: 1px solid rgba(139, 0, 0, 0.1);\n    }\n    \n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n    \n    .footer-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.5rem;\n        letter-spacing: 0.15em;\n        color: var(--off-white);\n    }\n    \n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n    \n    .social-links a {\n        color: var(--light-gray);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 0.1em;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n    \n    .social-links a:hover {\n        color: var(--crimson);\n    }\n    \n    .footer-bottom {\n        max-width: 1400px;\n        margin: 3rem auto 0;\n        padding-top: 2rem;\n        border-top: 1px solid rgba(139, 0, 0, 0.1);\n        text-align: center;\n        font-size: 0.85rem;\n        color: var(--soft-gray);\n    }\n    \n    \/* Responsive Design *\/\n    @media (max-width: 1024px) {\n        .hero-title {\n            font-size: 4rem;\n        }\n        \n        .features-grid {\n            grid-template-columns: repeat(2, 1fr);\n            gap: 3rem;\n        }\n        \n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n        \n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n    }\n    \n    @media (max-width: 768px) {\n        nav {\n            padding: 1.5rem 2rem;\n        }\n        \n        .nav-links {\n            display: none;\n        }\n        \n        .hero-title {\n            font-size: 3rem;\n        }\n        \n        .hero-subtitle {\n            font-size: 1.4rem;\n        }\n        \n        section {\n            padding: 5rem 2rem;\n        }\n        \n        .section-title {\n            font-size: 2.2rem;\n        }\n        \n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n        \n        .edition-stats {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n        \n        .target-spaces {\n            flex-direction: column;\n        }\n        \n        .final-cta-title {\n            font-size: 2.5rem;\n        }\n        \n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n    \n    \/* Fade-in Animation on Scroll *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n    \n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader id=\"header\"\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#about\"\u003eAbout\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1 class=\"hero-title\"\u003eCrimson Vow\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003eAn Intimate Gesture\u003c\/p\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 20\u003c\/div\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003e\n            \u003cspan\u003eInquire About This Piece\u003c\/span\u003e\n        \u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/EfB7I9K1ZnE\" title=\"Crimson Vow — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"about\"\u003e\n    \u003ch2 class=\"section-title\"\u003eDesire, Wrapped in Restraint\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp class=\"description-text\"\u003e\n        An electric fusion of intimacy and elegance—\u003cstrong\u003eCrimson Vow\u003c\/strong\u003e captures the moment just before a promise becomes permanent. Rendered in Kasian Art Studio's signature monochrome restraint, punctuated by a single, deliberate interruption: \u003cstrong style=\"color: var(--crimson);\"\u003ecrimson\u003c\/strong\u003e.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Story\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Not every vow is spoken. Some are wrapped in silence and kept forever.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Rendered in Kasian Art Studio's signature monochrome restraint, the composition is punctuated by a single, deliberate interruption: red. Not loud. Not decorative. Symbolic. A draped crimson fabric spills across the figure like a secret—unraveling control, revealing devotion, and signaling intimacy without spectacle.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            The figures are faceless yet unmistakably human. Their closeness speaks of trust rather than exposure. The glass of red wine becomes a quiet witness—celebration deferred, tension sustained.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This piece is about connection without announcement. About desire that does not perform. About love that exists in shadows and chooses privacy over proof.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection id=\"details\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Quality\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle\"\u003eCrafted for collectors who demand excellence\u003c\/p\u003e\n    \n    \u003cdiv class=\"features-grid fade-in\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e01\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003e\n                Only 20 prints will ever exist. Each piece is individually numbered and authenticated, ensuring exclusivity and long-term value appreciation for discerning collectors.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e02\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003e\n                Museum-grade archival pigment inks on premium fine art substrates ensure 100+ year longevity. Designed for permanent display in luxury hotels, private galleries, and refined residential spaces.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e03\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003e\n                Figurative works with emotional depth and restrained elegance maintain strong demand in luxury hospitality and private collections, making this an acquisition that transcends decoration.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cspan class=\"stat-number\"\u003e20\u003c\/span\u003e\n            \u003cspan class=\"stat-label\"\u003eEdition Size\u003c\/span\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cspan class=\"stat-number\"\u003e100+\u003c\/span\u003e\n            \u003cspan class=\"stat-label\"\u003eYear Longevity\u003c\/span\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cspan class=\"stat-number\"\u003e2025\u003c\/span\u003e\n            \u003cspan class=\"stat-label\"\u003eRelease Year\u003c\/span\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat-item\"\u003e\n            \u003cspan class=\"stat-number\"\u003eMuseum\u003c\/span\u003e\n            \u003cspan class=\"stat-label\"\u003eGrade Quality\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle\"\u003eCreate a cohesive collection\u003c\/p\u003e\n    \n    \u003cdiv class=\"pairings-grid fade-in\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eVeiled Silence\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003e\n                Power unseen. A study in restraint where the hidden becomes more potent than the revealed. Together with Crimson Vow, these works explore the language of intimacy through absence and presence.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eAfter Midnight\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003e\n                The Kasian Intimacy Series continues. Moments that exist between heartbeats, where vulnerability and strength coexist. A perfect complement to the quiet devotion captured in Crimson Vow.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003cdiv class=\"collection-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Quiet Desire Collection\u003c\/h2\u003e\n        \u003cp class=\"section-subtitle\"\u003eEmotion without excess\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp style=\"font-size: 1.1rem; color: var(--light-gray); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.9;\"\u003e\n            These works create a cohesive narrative for spaces that value emotion without excess. Curated for collectors who understand that the most powerful statements are often the quietest.\n        \u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button\"\u003e\n            \u003cspan\u003eExplore the Collection\u003c\/span\u003e\n        \u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003ch2 class=\"section-title\"\u003eDesigned for Distinction\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp style=\"font-size: 1.15rem; color: var(--light-gray); margin-bottom: 3rem; line-height: 2;\"\u003e\n            \u003cem style=\"font-family: 'Cormorant Garamond', serif;\"\u003eCrimson Vow\u003c\/em\u003e anchors luxury hospitality spaces, private collectors, penthouse bedrooms, boutique hotel corridors, and refined residential interiors—spaces where emotional depth and architectural calm coexist.\n        \u003c\/p\u003e\n        \n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eLuxury Hotel Suites\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePenthouse Bedrooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Corridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Dining Rooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eGallery-Style Hallways\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Collections\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp class=\"brand-title\"\u003eTrusted by the World's Finest Hospitality Brands\u003c\/p\u003e\n    \u003cdiv class=\"brand-logos\"\u003eAMAN • FOUR SEASONS • ST. REGIS • RITZ-CARLTON RESERVE\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003ch2 class=\"final-cta-title\"\u003eThis is Intimacy for Those Who Understand It\u003c\/h2\u003e\n    \u003cp class=\"final-cta-text\"\u003eDesire doesn't need permission.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"cta-button\"\u003e\n        \u003cspan\u003eBegin Your Inquiry\u003c\/span\u003e\n    \u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\"\u003eFacebook\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"footer-bottom\"\u003e\n        \u003cp\u003e© 2025 Kasian Art Studio. All Rights Reserved. Museum-Grade Fine Art for Luxury Interiors.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003c!-- JavaScript --\u003e\n\u003cscript\u003e\n    \/\/ Header scroll effect\n    const header = document.getElementById('header');\n    window.addEventListener('scroll', () =\u003e {\n        if (window.scrollY \u003e 100) {\n            header.classList.add('scrolled');\n        } else {\n            header.classList.remove('scrolled');\n        }\n    });\n\n    \/\/ Fade-in on scroll\n    const fadeElements = document.querySelectorAll('.fade-in');\n    \n    const fadeInOnScroll = () =\u003e {\n        fadeElements.forEach(element =\u003e {\n            const elementTop = element.getBoundingClientRect().top;\n            const elementBottom = element.getBoundingClientRect().bottom;\n            \n            if (elementTop \u003c window.innerHeight - 100 \u0026\u0026 elementBottom \u003e 0) {\n                element.classList.add('visible');\n            }\n        });\n    };\n    \n    window.addEventListener('scroll', fadeInOnScroll);\n    window.addEventListener('load', fadeInOnScroll);\n\n    \/\/ Smooth scroll for navigation\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({\n                    behavior: 'smooth',\n                    block: 'start'\n                });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47324251652261,"sku":"6412305_16039","price":10314.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47324251685029,"sku":"6412305_15700","price":10314.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/2BD1119A-0710-489B-9E4C-C8E3438C7FA1.png?v=1766518475"},{"product_id":"midnight-authority","title":"Midnight Authority — The Woman Who Commands Silence","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eMidnight Authority — Luxury Noir Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade figurative artwork capturing feminine authority and quiet power, curated for luxury interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    :root {\n        --primary-bg: #0a0a0a;\n        --secondary-bg: #141414;\n        --accent-color: #1a1a1a;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --divider: #2a2a2a;\n        --serif: 'Cormorant Garamond', serif;\n        --display: 'Playfair Display', serif;\n        --sans: 'Montserrat', sans-serif;\n    }\n\n    body {\n        font-family: var(--sans);\n        background-color: var(--primary-bg);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    \/* Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n\n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 2rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        font-weight: 600;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n\n    .nav-links {\n        display: flex;\n        gap: 2.5rem;\n        list-style: none;\n    }\n\n    .nav-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .nav-links a:hover {\n        color: var(--text-primary);\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        padding: 8rem 2rem 4rem;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at center, rgba(26, 26, 26, 0.4), transparent 70%);\n        animation: pulse 8s ease-in-out infinite;\n    }\n\n    @keyframes pulse {\n        0%, 100% { opacity: 0.3; }\n        50% { opacity: 0.6; }\n    }\n\n    .hero-content {\n        max-width: 900px;\n        position: relative;\n        z-index: 1;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .edition-badge {\n        display: inline-block;\n        padding: 0.5rem 1.5rem;\n        border: 1px solid var(--divider);\n        font-size: 0.8rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        color: var(--text-secondary);\n    }\n\n    .hero h1 {\n        font-family: var(--display);\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 600;\n        line-height: 1.1;\n        margin-bottom: 1.5rem;\n        letter-spacing: -1px;\n    }\n\n    .tagline {\n        font-family: var(--serif);\n        font-size: clamp(1.3rem, 3vw, 2rem);\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n\n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        border: 2px solid var(--text-primary);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .cta-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: var(--text-primary);\n        transition: left 0.3s ease;\n        z-index: -1;\n    }\n\n    .cta-button:hover {\n        color: var(--primary-bg);\n    }\n\n    .cta-button:hover::before {\n        left: 0;\n    }\n\n    \/* Section Styles *\/\n    .section {\n        padding: 6rem 2rem;\n        max-width: 1400px;\n        margin: 0 auto;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        font-weight: 600;\n        text-align: center;\n        margin-bottom: 1rem;\n        letter-spacing: -1px;\n    }\n\n    .section-subtitle {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        font-style: italic;\n        text-align: center;\n        color: var(--text-secondary);\n        margin-bottom: 4rem;\n    }\n\n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--divider);\n        margin: 3rem auto;\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        background: var(--secondary-bg);\n    }\n\n    .video-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n    }\n\n    \/* Description Section *\/\n    .description-content {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n        animation: fadeIn 1s ease-out;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; }\n        to { opacity: 1; }\n    }\n\n    .description-content p {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    .power-statement {\n        font-family: var(--serif);\n        font-size: 1.5rem;\n        font-weight: 500;\n        color: var(--text-primary);\n        margin: 2rem 0;\n        font-style: italic;\n    }\n\n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--secondary-bg);\n    }\n\n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n\n    .backstory-content p {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-align: center;\n    }\n\n    .backstory-highlight {\n        font-size: 1.6rem;\n        color: var(--text-primary);\n        font-weight: 500;\n        margin: 3rem 0;\n    }\n\n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 3rem;\n        margin-top: 4rem;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 2rem;\n        border: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--text-secondary);\n        transform: translateY(-5px);\n    }\n\n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n    }\n\n    .feature-description {\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 4rem auto;\n        padding: 3rem 0;\n        border-top: 1px solid var(--divider);\n        border-bottom: 1px solid var(--divider);\n    }\n\n    .stat {\n        text-align: center;\n    }\n\n    .stat-value {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-weight: 600;\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n    }\n\n    \/* Pairings Section *\/\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n        gap: 3rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-card {\n        border: 1px solid var(--divider);\n        padding: 2rem;\n        transition: all 0.3s ease;\n    }\n\n    .pairing-card:hover {\n        border-color: var(--text-secondary);\n    }\n\n    .pairing-title {\n        font-family: var(--display);\n        font-size: 1.8rem;\n        margin-bottom: 1rem;\n    }\n\n    .pairing-description {\n        color: var(--text-secondary);\n        line-height: 1.7;\n        margin-bottom: 1.5rem;\n    }\n\n    .pairing-link {\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        border-bottom: 1px solid var(--text-primary);\n        padding-bottom: 2px;\n        transition: all 0.3s ease;\n    }\n\n    .pairing-link:hover {\n        opacity: 0.7;\n    }\n\n    \/* Collection CTA *\/\n    .collection-cta {\n        background: var(--secondary-bg);\n        text-align: center;\n        padding: 5rem 2rem;\n    }\n\n    .collection-cta h2 {\n        font-family: var(--display);\n        font-size: clamp(2rem, 4vw, 3.5rem);\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-cta p {\n        font-size: 1.2rem;\n        color: var(--text-secondary);\n        margin-bottom: 2.5rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin: 3rem 0;\n    }\n\n    .space-tag {\n        padding: 0.7rem 1.5rem;\n        border: 1px solid var(--divider);\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--text-primary);\n        background: rgba(255, 255, 255, 0.05);\n    }\n\n    \/* Brand Strip *\/\n    .brand-strip {\n        background: var(--secondary-bg);\n        padding: 3rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--divider);\n        border-bottom: 1px solid var(--divider);\n    }\n\n    .brand-strip p {\n        font-size: 0.9rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 1.5rem;\n    }\n\n    .brand-names {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        letter-spacing: 3px;\n        color: var(--text-primary);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        text-align: center;\n        padding: 6rem 2rem;\n    }\n\n    .final-cta h2 {\n        font-family: var(--display);\n        font-size: clamp(2.5rem, 5vw, 4rem);\n        margin-bottom: 2rem;\n    }\n\n    .final-cta p {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    \/* Footer *\/\n    .footer {\n        background: var(--secondary-bg);\n        padding: 3rem 2rem;\n        text-align: center;\n        border-top: 1px solid var(--divider);\n    }\n\n    .social-links {\n        display: flex;\n        justify-content: center;\n        gap: 2rem;\n        margin-bottom: 2rem;\n    }\n\n    .social-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.9rem;\n        letter-spacing: 1px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--text-primary);\n    }\n\n    .footer-text {\n        font-size: 0.85rem;\n        color: var(--text-secondary);\n        letter-spacing: 1px;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .nav-links {\n            display: none;\n        }\n\n        .hero {\n            padding: 6rem 1.5rem 3rem;\n        }\n\n        .section {\n            padding: 4rem 1.5rem;\n        }\n\n        .features-grid,\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .edition-stats {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    \/* Smooth Scroll *\/\n    html {\n        scroll-behavior: smooth;\n    }\n\n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- Header --\u003e\n\u003cheader class=\"header\"\u003e\n    \u003cdiv class=\"header-content\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n        \u003cnav\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#collection\"\u003eCollection\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/div\u003e\n\u003c\/header\u003e\n\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 25\u003c\/div\u003e\n        \u003ch1\u003eMidnight Authority\u003c\/h1\u003e\n        \u003cp class=\"tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Midnight%20Authority\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/NcxTzL1DueY?si=w17rDxsMaCpUfgY9\" title=\"Midnight Authority — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"section\" id=\"details\"\u003e\n    \u003cdiv class=\"description-content fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eThe Woman Who Commands Silence\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"power-statement\"\u003ePower does not speak. It enters.\u003c\/p\u003e\n        \u003cp\u003eMidnight Authority is not a portrait. It is a presence.\u003c\/p\u003e\n        \u003cp\u003eRendered in Kasian Art Studio's signature black-on-black restraint, this work captures the moment authority becomes instinctive. The wide-brimmed hat conceals the eyes—not out of mystery, but choice. What remains visible is certainty: sculpted lips, elongated form, posture that requires no validation.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory section\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp class=\"backstory-highlight\"\u003eShe does not announce herself.\u003c\/p\u003e\n        \u003cp class=\"backstory-highlight\"\u003eThe room adjusts.\u003c\/p\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eThis piece speaks to feminine command without explanation. The kind of power that does not negotiate. The kind that is felt before it is noticed.\u003c\/p\u003e\n        \u003cp\u003eMinimalist in palette yet maximal in impact, Midnight Authority anchors luxury interiors with quiet dominance. It is designed for spaces that understand restraint as sophistication—executive offices, penthouse corridors, boutique hotel suites, and private collector environments.\u003c\/p\u003e\n        \u003cp class=\"backstory-highlight\"\u003eThis artwork does not decorate. It defines the room.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid fade-in\"\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eOnly 25 prints will ever exist. Each piece is numbered, certified, and produced to museum standards—ensuring exclusivity and lasting collector value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eMuseum-grade archival pigment inks on premium fine-art substrates ensure exceptional depth, tonal richness, and 100+ year longevity.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-description\"\u003eFigurative noir artwork maintains strong demand among collectors drawn to restraint, power, and timeless elegance in luxury interiors.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Stats --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"edition-stats fade-in\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e25\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e2025\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-value\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-value\"\u003eMuseum\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eGrade Quality\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cp class=\"section-subtitle\"\u003eComplete The Authority Collection\u003c\/p\u003e\n    \u003cdiv class=\"pairings-grid fade-in\"\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eVeiled Power\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eThe Kasian Noir Series—a companion piece exploring concealed strength and feminine mystique through architectural shadow and form.\u003c\/p\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"pairing-link\"\u003eExplore Collection →\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eShe Does Not Ask\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eCollector's Edition—capturing unapologetic presence and sovereign command in minimalist black and white portraiture.\u003c\/p\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"pairing-link\"\u003eExplore Collection →\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\" id=\"collection\"\u003e\n    \u003ch2\u003eThe Authority Collection\u003c\/h2\u003e\n    \u003cp\u003eCurated for luxury interiors that lead, not follow.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"investment-section fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment-Grade Positioning\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp style=\"font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 3rem;\"\u003eIdeal for spaces that understand restraint as sophistication\u003c\/p\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003eExecutive Corner Offices\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eLuxury Penthouse Corridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Dressing Rooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eGallery-Style Hallways\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Collector Environments\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp\u003eTrusted by World-Class Hospitality Brands\u003c\/p\u003e\n    \u003cdiv class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\" id=\"inquire\"\u003e\n    \u003ch2\u003ePower, Without Permission\u003c\/h2\u003e\n    \u003cp\u003eShe doesn't raise her voice. She lowers the room.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Midnight%20Authority\" class=\"cta-button\"\u003eBegin Your Inquiry\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"social-links\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\"\u003eWebsite\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"footer-text\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    \/\/ Intersection Observer for fade-in animations\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header scroll effect\n    let lastScroll = 0;\n    const header = document.querySelector('.header');\n\n    window.addEventListener('scroll', () =\u003e {\n        const currentScroll = window.pageYOffset;\n        \n        if (currentScroll \u003e 100) {\n            header.style.padding = '1rem 0';\n        } else {\n            header.style.padding = '1.5rem 0';\n        }\n        \n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47332507910309,"sku":"9411906_16039","price":10264.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47332507943077,"sku":"9411906_15700","price":10264.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/71CE7BFC-FED6-4FCB-BB6C-3E10275AA5AE.png?v=1766869430"},{"product_id":"framed-canvas","title":"Sovereign Form — The Art of Absolute Poise Sovereign Form — The Art of Absolute Poise","description":"\u003cbody\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eSovereign Form — Luxury Figurative Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade figurative artwork exploring elegance, restraint, and feminine command—curated for luxury interiors.\"\u003e\n    \n    \u003c!-- Fonts --\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n    \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;600;700\u0026amp;family=Playfair+Display:wght@400;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n    \n    \u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n        \n        :root {\n            --primary-bg: #0a0a0a;\n            --secondary-bg: #151515;\n            --accent-color: #d4a574;\n            --text-primary: #ffffff;\n            --text-secondary: #c0c0c0;\n            --text-muted: #808080;\n        }\n        \n        body {\n            font-family: 'Montserrat', sans-serif;\n            background-color: var(--primary-bg);\n            color: var(--text-primary);\n            line-height: 1.6;\n            overflow-x: hidden;\n        }\n        \n        \/* Typography *\/\n        h1, h2, h3, h4 {\n            font-family: 'Cormorant Garamond', serif;\n            font-weight: 300;\n            letter-spacing: 0.02em;\n        }\n        \n        .playfair {\n            font-family: 'Playfair Display', serif;\n        }\n        \n        \/* Header *\/\n        header {\n            position: fixed;\n            top: 0;\n            left: 0;\n            right: 0;\n            z-index: 1000;\n            background: rgba(10, 10, 10, 0.95);\n            backdrop-filter: blur(10px);\n            border-bottom: 1px solid rgba(212, 165, 116, 0.1);\n            transition: all 0.3s ease;\n        }\n        \n        nav {\n            max-width: 1400px;\n            margin: 0 auto;\n            padding: 1.5rem 2rem;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n        \n        .logo {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.5rem;\n            font-weight: 300;\n            letter-spacing: 0.15em;\n            color: var(--text-primary);\n            text-decoration: none;\n        }\n        \n        .nav-links {\n            display: flex;\n            gap: 2.5rem;\n            list-style: none;\n        }\n        \n        .nav-links a {\n            color: var(--text-secondary);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 0.1em;\n            text-transform: uppercase;\n            transition: color 0.3s ease;\n        }\n        \n        .nav-links a:hover {\n            color: var(--accent-color);\n        }\n        \n        \/* Hero Section *\/\n        .hero {\n            min-height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            text-align: center;\n            padding: 8rem 2rem 4rem;\n            position: relative;\n            overflow: hidden;\n        }\n        \n        .hero::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.05) 0%, transparent 70%);\n            animation: pulse 8s ease-in-out infinite;\n        }\n        \n        @keyframes pulse {\n            0%, 100% { opacity: 0.3; }\n            50% { opacity: 0.6; }\n        }\n        \n        .hero-content {\n            max-width: 900px;\n            position: relative;\n            z-index: 1;\n            animation: fadeInUp 1s ease-out;\n        }\n        \n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n        \n        .edition-badge {\n            display: inline-block;\n            padding: 0.5rem 1.5rem;\n            border: 1px solid var(--accent-color);\n            color: var(--accent-color);\n            font-size: 0.75rem;\n            letter-spacing: 0.2em;\n            text-transform: uppercase;\n            margin-bottom: 2rem;\n            animation: fadeIn 1s ease-out 0.3s both;\n        }\n        \n        @keyframes fadeIn {\n            from { opacity: 0; }\n            to { opacity: 1; }\n        }\n        \n        .hero h1 {\n            font-size: clamp(3rem, 8vw, 6rem);\n            margin-bottom: 1rem;\n            line-height: 1.1;\n            animation: fadeInUp 1s ease-out 0.5s both;\n        }\n        \n        .hero-subtitle {\n            font-size: clamp(1.2rem, 3vw, 1.8rem);\n            color: var(--text-secondary);\n            font-weight: 300;\n            letter-spacing: 0.1em;\n            margin-bottom: 3rem;\n            animation: fadeInUp 1s ease-out 0.7s both;\n        }\n        \n        .cta-button {\n            display: inline-block;\n            padding: 1rem 3rem;\n            background: transparent;\n            border: 1px solid var(--accent-color);\n            color: var(--accent-color);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 0.15em;\n            text-transform: uppercase;\n            transition: all 0.3s ease;\n            animation: fadeInUp 1s ease-out 0.9s both;\n        }\n        \n        .cta-button:hover {\n            background: var(--accent-color);\n            color: var(--primary-bg);\n            transform: translateY(-2px);\n            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);\n        }\n        \n        \/* Section Styling *\/\n        section {\n            padding: 6rem 2rem;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n        \n        .section-title {\n            font-size: clamp(2.5rem, 5vw, 4rem);\n            text-align: center;\n            margin-bottom: 3rem;\n            font-weight: 300;\n        }\n        \n        .divider {\n            width: 80px;\n            height: 1px;\n            background: var(--accent-color);\n            margin: 4rem auto;\n        }\n        \n        \/* Video Section *\/\n        .video-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            position: relative;\n            padding-bottom: 56.25%;\n            height: 0;\n            overflow: hidden;\n            border: 1px solid rgba(212, 165, 116, 0.2);\n        }\n        \n        .video-container iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n        }\n        \n        \/* Description Section *\/\n        .description {\n            max-width: 900px;\n            margin: 0 auto;\n            text-align: center;\n        }\n        \n        .description p {\n            font-size: 1.1rem;\n            line-height: 1.8;\n            color: var(--text-secondary);\n            margin-bottom: 1.5rem;\n        }\n        \n        \/* Backstory Section *\/\n        .backstory {\n            background: var(--secondary-bg);\n            padding: 6rem 2rem;\n            margin: 4rem 0;\n        }\n        \n        .backstory-content {\n            max-width: 800px;\n            margin: 0 auto;\n        }\n        \n        .backstory-quote {\n            font-family: 'Playfair Display', serif;\n            font-size: clamp(1.8rem, 4vw, 3rem);\n            font-style: italic;\n            text-align: center;\n            margin-bottom: 3rem;\n            line-height: 1.4;\n            color: var(--accent-color);\n        }\n        \n        .backstory p {\n            font-size: 1.1rem;\n            line-height: 1.9;\n            color: var(--text-secondary);\n            margin-bottom: 1.5rem;\n        }\n        \n        \/* Features Grid *\/\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 3rem;\n            margin-top: 4rem;\n        }\n        \n        .feature-card {\n            text-align: center;\n            padding: 2rem;\n            border: 1px solid rgba(212, 165, 116, 0.1);\n            transition: all 0.3s ease;\n        }\n        \n        .feature-card:hover {\n            border-color: var(--accent-color);\n            transform: translateY(-5px);\n        }\n        \n        .feature-icon {\n            font-size: 3rem;\n            margin-bottom: 1.5rem;\n            color: var(--accent-color);\n        }\n        \n        .feature-card h3 {\n            font-size: 1.5rem;\n            margin-bottom: 1rem;\n            font-weight: 400;\n        }\n        \n        .feature-card p {\n            color: var(--text-secondary);\n            line-height: 1.7;\n        }\n        \n        \/* Stats Grid *\/\n        .stats-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n            gap: 2rem;\n            margin: 4rem 0;\n            padding: 3rem 0;\n            border-top: 1px solid rgba(212, 165, 116, 0.1);\n            border-bottom: 1px solid rgba(212, 165, 116, 0.1);\n        }\n        \n        .stat-item {\n            text-align: center;\n        }\n        \n        .stat-number {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3rem;\n            color: var(--accent-color);\n            margin-bottom: 0.5rem;\n        }\n        \n        .stat-label {\n            font-size: 0.9rem;\n            color: var(--text-secondary);\n            text-transform: uppercase;\n            letter-spacing: 0.1em;\n        }\n        \n        \/* Pairings Section *\/\n        .pairings {\n            background: var(--secondary-bg);\n            padding: 6rem 2rem;\n        }\n        \n        .pairings-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 3rem;\n            max-width: 1200px;\n            margin: 3rem auto 0;\n        }\n        \n        .pairing-card {\n            border: 1px solid rgba(212, 165, 116, 0.1);\n            padding: 2rem;\n            transition: all 0.3s ease;\n        }\n        \n        .pairing-card:hover {\n            border-color: var(--accent-color);\n            transform: translateY(-5px);\n        }\n        \n        .pairing-card h3 {\n            font-size: 1.8rem;\n            margin-bottom: 1rem;\n            font-weight: 400;\n        }\n        \n        .pairing-card p {\n            color: var(--text-secondary);\n            line-height: 1.7;\n        }\n        \n        \/* Collection CTA *\/\n        .collection-cta {\n            text-align: center;\n            padding: 6rem 2rem;\n            background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, transparent 100%);\n        }\n        \n        .collection-cta h2 {\n            font-size: clamp(2.5rem, 5vw, 4rem);\n            margin-bottom: 2rem;\n        }\n        \n        .collection-cta p {\n            font-size: 1.2rem;\n            color: var(--text-secondary);\n            margin-bottom: 3rem;\n            max-width: 700px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n        \n        \/* Investment Section *\/\n        .investment {\n            text-align: center;\n            max-width: 900px;\n            margin: 0 auto;\n        }\n        \n        .investment h2 {\n            font-size: clamp(2.5rem, 5vw, 4rem);\n            margin-bottom: 2rem;\n        }\n        \n        .investment p {\n            font-size: 1.1rem;\n            color: var(--text-secondary);\n            line-height: 1.8;\n            margin-bottom: 1.5rem;\n        }\n        \n        .target-spaces {\n            display: flex;\n            flex-wrap: wrap;\n            justify-content: center;\n            gap: 1rem;\n            margin: 3rem 0;\n        }\n        \n        .space-tag {\n            padding: 0.75rem 1.5rem;\n            border: 1px solid rgba(212, 165, 116, 0.3);\n            color: var(--text-secondary);\n            font-size: 0.9rem;\n            letter-spacing: 0.05em;\n        }\n        \n        \/* Brand Strip *\/\n        .brand-strip {\n            padding: 4rem 2rem;\n            background: var(--secondary-bg);\n            text-align: center;\n            overflow: hidden;\n        }\n        \n        .brand-strip h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            text-transform: uppercase;\n            color: var(--text-muted);\n            margin-bottom: 2rem;\n        }\n        \n        .brands {\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            gap: 3rem;\n            flex-wrap: wrap;\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.5rem;\n            color: var(--text-secondary);\n        }\n        \n        .brand-separator {\n            color: var(--accent-color);\n        }\n        \n        \/* Final CTA *\/\n        .final-cta {\n            text-align: center;\n            padding: 8rem 2rem;\n            background: linear-gradient(to bottom, transparent 0%, rgba(212, 165, 116, 0.05) 100%);\n        }\n        \n        .final-cta h2 {\n            font-size: clamp(3rem, 6vw, 5rem);\n            margin-bottom: 2rem;\n        }\n        \n        .final-cta p {\n            font-size: 1.2rem;\n            color: var(--text-secondary);\n            margin-bottom: 3rem;\n            max-width: 600px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n        \n        \/* Footer *\/\n        footer {\n            background: var(--secondary-bg);\n            padding: 4rem 2rem 2rem;\n            text-align: center;\n            border-top: 1px solid rgba(212, 165, 116, 0.1);\n        }\n        \n        .social-links {\n            display: flex;\n            justify-content: center;\n            gap: 2rem;\n            margin-bottom: 2rem;\n        }\n        \n        .social-links a {\n            color: var(--text-secondary);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 0.1em;\n            text-transform: uppercase;\n            transition: color 0.3s ease;\n        }\n        \n        .social-links a:hover {\n            color: var(--accent-color);\n        }\n        \n        .copyright {\n            color: var(--text-muted);\n            font-size: 0.85rem;\n            margin-top: 2rem;\n        }\n        \n        \/* Responsive *\/\n        @media (max-width: 768px) {\n            nav {\n                padding: 1rem;\n            }\n            \n            .nav-links {\n                gap: 1rem;\n                font-size: 0.8rem;\n            }\n            \n            .hero {\n                padding: 6rem 1rem 3rem;\n            }\n            \n            section {\n                padding: 4rem 1rem;\n            }\n            \n            .features-grid,\n            .pairings-grid {\n                grid-template-columns: 1fr;\n                gap: 2rem;\n            }\n            \n            .brands {\n                gap: 1.5rem;\n                font-size: 1.2rem;\n            }\n        }\n        \n        \/* Scroll Animations *\/\n        .fade-in {\n            opacity: 0;\n            transform: translateY(30px);\n            transition: opacity 0.6s ease, transform 0.6s ease;\n        }\n        \n        .fade-in.visible {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    \u003c\/style\u003e\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cnav\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cul class=\"nav-links\"\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\u003c\/li\u003e\n                \u003cli\u003e\u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\u003c\/li\u003e\n            \u003c\/ul\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n    \u003c!-- Hero Section --\u003e\n    \u003csection class=\"hero\"\u003e\n        \u003cdiv class=\"hero-content\"\u003e\n            \u003cdiv class=\"edition-badge\"\u003eLimited Edition of 25\u003c\/div\u003e\n            \u003ch1\u003eSovereign Form\u003c\/h1\u003e\n            \u003cp class=\"hero-subtitle\"\u003eThe Art of Absolute Poise\u003c\/p\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Sovereign%20Form\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Video Section --\u003e\n    \u003csection class=\"fade-in\"\u003e\n        \u003cdiv class=\"video-container\"\u003e\n            \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/ZCFL5D5PwrE\" title=\"Sovereign Form\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\u003c\/iframe\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Description Section --\u003e\n    \u003csection class=\"description fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eElegance, Elongated. Power, Perfected.\u003c\/h2\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eSovereign Form is a study in command through stillness.\u003c\/p\u003e\n        \u003cp\u003eThe figure rises in uninterrupted vertical grace—arms lifted, body sculpted, posture unwavering. This is not movement. This is arrival. A moment where discipline, beauty, and authority converge into a single, refined silhouette.\u003c\/p\u003e\n        \u003cp\u003eRendered in Kasian Art Studio's signature monochrome restraint, the elongated form evokes haute couture, classical sculpture, and modern minimalism all at once. The absence of excess allows presence to dominate. Nothing distracts. Everything aligns.\u003c\/p\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Backstory Section --\u003e\n    \u003cdiv class=\"backstory fade-in\"\u003e\n        \u003cdiv class=\"backstory-content\"\u003e\n            \u003cp class=\"backstory-quote\"\u003e\"She doesn't move for the room. The room rises to meet her.\"\u003c\/p\u003e\n            \u003cp\u003eThis piece is designed for interiors that value quiet confidence over decoration—spaces curated by those who understand that true luxury does not shout.\u003c\/p\u003e\n            \u003cp\u003eSovereign Form elevates its environment. It lengthens walls. It slows the room. It commands attention without requesting it.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Museum-Grade Features --\u003e\n    \u003csection class=\"fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"features-grid\"\u003e\n            \u003cdiv class=\"feature-card\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n                \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n                \u003cp\u003eOnly 25 prints will ever exist. Each piece is numbered and comes with a Certificate of Authenticity, ensuring exclusivity and investment value.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"feature-card\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n                \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n                \u003cp\u003eMuseum-grade archival pigment inks on premium fine art substrates ensure exceptional tonal depth, sculptural richness, and 100+ year longevity.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"feature-card\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n                \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n                \u003cp\u003eFigurative art exploring feminine power maintains strong demand among collectors, interior designers, and luxury hospitality brands worldwide.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Edition Details --\u003e\n    \u003csection class=\"fade-in\"\u003e\n        \u003cdiv class=\"stats-grid\"\u003e\n            \u003cdiv class=\"stat-item\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e25\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat-item\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat-item\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat-item\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e1\/1\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eUnique Vision\u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Curated Pairings --\u003e\n    \u003cdiv class=\"pairings fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cp style=\"text-align: center; color: var(--text-secondary); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto;\"\u003e\n            Sovereign Form pairs beautifully with these complementary works to create The Command Collection—artworks designed for luxury environments defined by leadership, restraint, and vision.\n        \u003c\/p\u003e\n        \u003cdiv class=\"pairings-grid\"\u003e\n            \u003cdiv class=\"pairing-card\"\u003e\n                \u003ch3\u003eMidnight Authority\u003c\/h3\u003e\n                \u003cp\u003eThe Woman Who Commands Silence. A powerful study in quiet leadership and elegant restraint.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"pairing-card\"\u003e\n                \u003ch3\u003eVeiled Power\u003c\/h3\u003e\n                \u003cp\u003eFrom the Kasian Noir Series. Sculptural feminine form rendered in dramatic monochrome elegance.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Collection CTA --\u003e\n    \u003csection class=\"collection-cta fade-in\"\u003e\n        \u003ch2\u003eExplore the Collection\u003c\/h2\u003e\n        \u003cp\u003eDiscover more sophisticated figurative artworks from the Black \u0026amp; White Luxury Collection, curated for collectors who value timeless elegance.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Investment Positioning --\u003e\n    \u003csection class=\"investment fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eInvestment-Grade Positioning\u003c\/h2\u003e\n        \u003cp\u003eSovereign Form is designed for luxury interiors where restraint is sophistication and presence is power.\u003c\/p\u003e\n        \u003cp\u003eThis piece elevates executive offices, boutique hotel suites, private galleries, and refined residential spaces that demand museum-quality artwork.\u003c\/p\u003e\n        \n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cspan class=\"space-tag\"\u003eExecutive Corner Offices\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eDouble-Height Corridors\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eLuxury Penthouse Walls\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003ePrivate Dressing Rooms\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eContemporary Galleries\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Luxury Brand Strip --\u003e\n    \u003cdiv class=\"brand-strip fade-in\"\u003e\n        \u003ch3\u003eCollected by Luxury Hospitality Brands\u003c\/h3\u003e\n        \u003cdiv class=\"brands\"\u003e\n            \u003cspan\u003eAman\u003c\/span\u003e\n            \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n            \u003cspan\u003eFour Seasons\u003c\/span\u003e\n            \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n            \u003cspan\u003eSt. Regis\u003c\/span\u003e\n            \u003cspan class=\"brand-separator\"\u003e•\u003c\/span\u003e\n            \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Final CTA --\u003e\n    \u003csection class=\"final-cta fade-in\"\u003e\n        \u003ch2\u003eInquire Today\u003c\/h2\u003e\n        \u003cp\u003eLimited to 25 pieces worldwide. Reserve yours before this edition closes.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Collector%20Inquiry:%20Sovereign%20Form\" class=\"cta-button\"\u003eContact Gallery\u003c\/a\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Footer --\u003e\n    \u003cfooter\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eEmail\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"divider\" style=\"margin: 2rem auto; width: 60px;\"\u003e\u003c\/div\u003e\n        \u003cp class=\"copyright\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/footer\u003e\n\n    \u003c!-- Scroll Animation Script --\u003e\n    \u003cscript\u003e\n        \/\/ Smooth scroll animation on load\n        const observerOptions = {\n            threshold: 0.1,\n            rootMargin: '0px 0px -50px 0px'\n        };\n\n        const observer = new IntersectionObserver((entries) =\u003e {\n            entries.forEach(entry =\u003e {\n                if (entry.isIntersecting) {\n                    entry.target.classList.add('visible');\n                }\n            });\n        }, observerOptions);\n\n        document.querySelectorAll('.fade-in').forEach(el =\u003e observer.observe(el));\n\n        \/\/ Header scroll effect\n        let lastScroll = 0;\n        const header = document.querySelector('header');\n\n        window.addEventListener('scroll', () =\u003e {\n            const currentScroll = window.pageYOffset;\n            \n            if (currentScroll \u003e 100) {\n                header.style.padding = '1rem 0';\n            } else {\n                header.style.padding = '1.5rem 0';\n            }\n            \n            lastScroll = currentScroll;\n        });\n    \u003c\/script\u003e\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47361567883429,"sku":"2207796_16039","price":12314.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47361567916197,"sku":"2207796_16045","price":12314.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47361567948965,"sku":"2207796_15700","price":12314.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/2329589F-BB60-4FCC-B5D3-115AD97A0755.png?v=1767913656"},{"product_id":"velvet-vice","title":"Velvet Vice — The Quiet Power of Indulgence","description":"\u003cbody\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eVelvet Vice — Luxury Noir Wall Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"A museum-grade noir portrait exploring indulgence, power, and feminine command—crafted for luxury interiors.\"\u003e\n    \n    \u003c!-- Fonts --\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n    \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n    \n    \u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        :root {\n            --primary-bg: #0a0a0a;\n            --accent-color: #d4d4d4;\n            --accent-gold: #c9a227;\n            --text-primary: #f5f5f5;\n            --text-secondary: #b8b8b8;\n            --serif: 'Cormorant Garamond', serif;\n            --display: 'Playfair Display', serif;\n            --sans: 'Montserrat', sans-serif;\n        }\n\n        body {\n            background: var(--primary-bg);\n            color: var(--text-primary);\n            font-family: var(--sans);\n            line-height: 1.6;\n            overflow-x: hidden;\n        }\n\n        \/* Smooth Scroll *\/\n        html {\n            scroll-behavior: smooth;\n        }\n\n        \/* Header *\/\n        .header {\n            position: fixed;\n            top: 0;\n            left: 0;\n            right: 0;\n            z-index: 1000;\n            background: rgba(10, 10, 10, 0.95);\n            backdrop-filter: blur(10px);\n            border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n            padding: 1.5rem 5%;\n            transition: all 0.3s ease;\n        }\n\n        .header-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n\n        .logo {\n            font-family: var(--display);\n            font-size: 1.5rem;\n            font-weight: 600;\n            letter-spacing: 2px;\n            color: var(--text-primary);\n            text-decoration: none;\n            transition: color 0.3s ease;\n        }\n\n        .logo:hover {\n            color: var(--accent-gold);\n        }\n\n        .nav {\n            display: flex;\n            gap: 2.5rem;\n            align-items: center;\n        }\n\n        .nav a {\n            color: var(--text-secondary);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 1px;\n            text-transform: uppercase;\n            transition: color 0.3s ease;\n            font-weight: 300;\n        }\n\n        .nav a:hover {\n            color: var(--text-primary);\n        }\n\n        \/* Hero Section *\/\n        .hero {\n            min-height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            position: relative;\n            padding: 8rem 5% 4rem;\n            overflow: hidden;\n        }\n\n        .hero-bg {\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.08), transparent 70%);\n            animation: pulseGlow 8s ease-in-out infinite;\n        }\n\n        @keyframes pulseGlow {\n            0%, 100% { opacity: 0.3; }\n            50% { opacity: 0.6; }\n        }\n\n        .hero-content {\n            max-width: 900px;\n            text-align: center;\n            position: relative;\n            z-index: 2;\n            animation: fadeInUp 1.2s ease-out;\n        }\n\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(40px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .hero-title {\n            font-family: var(--display);\n            font-size: clamp(3rem, 8vw, 6rem);\n            font-weight: 600;\n            margin-bottom: 1.5rem;\n            line-height: 1.1;\n            letter-spacing: 1px;\n            color: var(--text-primary);\n        }\n\n        .hero-subtitle {\n            font-family: var(--serif);\n            font-size: clamp(1.2rem, 2.5vw, 1.8rem);\n            font-weight: 300;\n            color: var(--text-secondary);\n            margin-bottom: 1rem;\n            font-style: italic;\n            letter-spacing: 2px;\n        }\n\n        .hero-edition {\n            font-size: 0.95rem;\n            color: var(--accent-gold);\n            letter-spacing: 3px;\n            text-transform: uppercase;\n            margin-bottom: 3rem;\n            font-weight: 400;\n        }\n\n        .cta-button {\n            display: inline-block;\n            padding: 1.2rem 3rem;\n            background: transparent;\n            border: 1px solid var(--accent-gold);\n            color: var(--accent-gold);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 2px;\n            text-transform: uppercase;\n            transition: all 0.4s ease;\n            position: relative;\n            overflow: hidden;\n            font-weight: 400;\n        }\n\n        .cta-button:before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: -100%;\n            width: 100%;\n            height: 100%;\n            background: var(--accent-gold);\n            transition: left 0.4s ease;\n            z-index: -1;\n        }\n\n        .cta-button:hover {\n            color: var(--primary-bg);\n        }\n\n        .cta-button:hover:before {\n            left: 0;\n        }\n\n        \/* Video Section *\/\n        .video-section {\n            padding: 6rem 5%;\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n\n        .video-container {\n            position: relative;\n            padding-bottom: 177.78%; \/* 9:16 aspect ratio for vertical video *\/\n            height: 0;\n            overflow: hidden;\n            max-width: 600px;\n            margin: 0 auto;\n            border-radius: 8px;\n            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n        }\n\n        .video-container iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            border: none;\n        }\n\n        \/* Description Section *\/\n        .description-section {\n            padding: 6rem 5%;\n            max-width: 900px;\n            margin: 0 auto;\n            text-align: center;\n        }\n\n        .section-divider {\n            width: 80px;\n            height: 1px;\n            background: var(--accent-gold);\n            margin: 0 auto 3rem;\n        }\n\n        .description-text {\n            font-family: var(--serif);\n            font-size: 1.3rem;\n            line-height: 1.8;\n            color: var(--text-secondary);\n            margin-bottom: 1.5rem;\n        }\n\n        \/* Backstory Section *\/\n        .backstory-section {\n            padding: 6rem 5%;\n            background: linear-gradient(180deg, rgba(201, 162, 39, 0.03) 0%, transparent 100%);\n        }\n\n        .backstory-content {\n            max-width: 800px;\n            margin: 0 auto;\n        }\n\n        .section-title {\n            font-family: var(--display);\n            font-size: clamp(2rem, 4vw, 3rem);\n            text-align: center;\n            margin-bottom: 3rem;\n            letter-spacing: 1px;\n            font-weight: 500;\n        }\n\n        .backstory-text {\n            font-family: var(--serif);\n            font-size: 1.2rem;\n            line-height: 1.9;\n            color: var(--text-secondary);\n            margin-bottom: 2rem;\n            text-align: justify;\n        }\n\n        \/* Features Grid *\/\n        .features-section {\n            padding: 6rem 5%;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 3rem;\n            margin-top: 4rem;\n        }\n\n        .feature-card {\n            text-align: center;\n            padding: 2rem;\n            background: rgba(255, 255, 255, 0.02);\n            border: 1px solid rgba(255, 255, 255, 0.05);\n            border-radius: 4px;\n            transition: all 0.4s ease;\n        }\n\n        .feature-card:hover {\n            background: rgba(255, 255, 255, 0.04);\n            border-color: var(--accent-gold);\n            transform: translateY(-5px);\n        }\n\n        .feature-icon {\n            font-size: 2.5rem;\n            margin-bottom: 1.5rem;\n            color: var(--accent-gold);\n        }\n\n        .feature-title {\n            font-family: var(--display);\n            font-size: 1.4rem;\n            margin-bottom: 1rem;\n            color: var(--text-primary);\n        }\n\n        .feature-text {\n            font-size: 0.95rem;\n            line-height: 1.7;\n            color: var(--text-secondary);\n        }\n\n        \/* Edition Stats *\/\n        .stats-section {\n            padding: 6rem 5%;\n            background: rgba(255, 255, 255, 0.02);\n        }\n\n        .stats-grid {\n            max-width: 1200px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 3rem;\n            text-align: center;\n        }\n\n        .stat-card {\n            padding: 2rem;\n        }\n\n        .stat-number {\n            font-family: var(--display);\n            font-size: 3rem;\n            color: var(--accent-gold);\n            margin-bottom: 0.5rem;\n            font-weight: 600;\n        }\n\n        .stat-label {\n            font-size: 0.9rem;\n            color: var(--text-secondary);\n            text-transform: uppercase;\n            letter-spacing: 2px;\n        }\n\n        \/* Pairings Section *\/\n        .pairings-section {\n            padding: 6rem 5%;\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n\n        .pairing-card {\n            background: rgba(255, 255, 255, 0.02);\n            border: 1px solid rgba(255, 255, 255, 0.05);\n            padding: 2rem;\n            margin-bottom: 1.5rem;\n            border-radius: 4px;\n            transition: all 0.3s ease;\n        }\n\n        .pairing-card:hover {\n            background: rgba(255, 255, 255, 0.04);\n            border-color: var(--accent-gold);\n        }\n\n        .pairing-title {\n            font-family: var(--display);\n            font-size: 1.5rem;\n            color: var(--text-primary);\n            margin-bottom: 0.5rem;\n        }\n\n        .pairing-description {\n            color: var(--text-secondary);\n            font-size: 0.95rem;\n            line-height: 1.6;\n        }\n\n        \/* Collection CTA *\/\n        .collection-cta {\n            padding: 6rem 5%;\n            text-align: center;\n            background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.05) 100%);\n        }\n\n        .collection-name {\n            font-family: var(--display);\n            font-size: 2rem;\n            margin-bottom: 2rem;\n            color: var(--text-primary);\n        }\n\n        \/* Investment Section *\/\n        .investment-section {\n            padding: 6rem 5%;\n            max-width: 1000px;\n            margin: 0 auto;\n        }\n\n        .spaces-list {\n            display: flex;\n            flex-wrap: wrap;\n            justify-content: center;\n            gap: 2rem;\n            margin-top: 3rem;\n        }\n\n        .space-tag {\n            padding: 1rem 2rem;\n            background: rgba(201, 162, 39, 0.1);\n            border: 1px solid rgba(201, 162, 39, 0.3);\n            border-radius: 30px;\n            color: var(--text-primary);\n            font-size: 0.9rem;\n            letter-spacing: 1px;\n        }\n\n        \/* Luxury Brand Strip *\/\n        .brand-strip {\n            padding: 4rem 5%;\n            text-align: center;\n            background: rgba(255, 255, 255, 0.01);\n            border-top: 1px solid rgba(255, 255, 255, 0.05);\n            border-bottom: 1px solid rgba(255, 255, 255, 0.05);\n        }\n\n        .brand-label {\n            font-size: 0.85rem;\n            color: var(--text-secondary);\n            letter-spacing: 2px;\n            text-transform: uppercase;\n            margin-bottom: 2rem;\n        }\n\n        .brand-names {\n            font-family: var(--serif);\n            font-size: 1.5rem;\n            color: var(--accent-gold);\n            letter-spacing: 3px;\n        }\n\n        \/* Final CTA *\/\n        .final-cta {\n            padding: 8rem 5%;\n            text-align: center;\n            background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.1), transparent 70%);\n        }\n\n        .final-cta-title {\n            font-family: var(--display);\n            font-size: clamp(2rem, 4vw, 3.5rem);\n            margin-bottom: 2rem;\n            line-height: 1.2;\n        }\n\n        .final-cta-text {\n            font-family: var(--serif);\n            font-size: 1.2rem;\n            color: var(--text-secondary);\n            margin-bottom: 3rem;\n            max-width: 700px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n\n        \/* Footer *\/\n        .footer {\n            padding: 4rem 5% 2rem;\n            border-top: 1px solid rgba(255, 255, 255, 0.1);\n            text-align: center;\n        }\n\n        .social-links {\n            display: flex;\n            justify-content: center;\n            gap: 2rem;\n            margin-bottom: 2rem;\n        }\n\n        .social-links a {\n            color: var(--text-secondary);\n            text-decoration: none;\n            font-size: 0.9rem;\n            letter-spacing: 1px;\n            transition: color 0.3s ease;\n        }\n\n        .social-links a:hover {\n            color: var(--accent-gold);\n        }\n\n        .footer-text {\n            font-size: 0.85rem;\n            color: var(--text-secondary);\n            letter-spacing: 1px;\n        }\n\n        \/* Responsive *\/\n        @media (max-width: 768px) {\n            .nav {\n                gap: 1.5rem;\n            }\n\n            .nav a {\n                font-size: 0.8rem;\n            }\n\n            .hero {\n                padding: 6rem 5% 3rem;\n            }\n\n            .features-grid {\n                grid-template-columns: 1fr;\n            }\n\n            .stats-grid {\n                grid-template-columns: 1fr;\n                gap: 2rem;\n            }\n\n            .spaces-list {\n                gap: 1rem;\n            }\n\n            .brand-names {\n                font-size: 1.1rem;\n            }\n        }\n\n        \/* Fade-in on scroll *\/\n        .fade-in {\n            opacity: 0;\n            transform: translateY(30px);\n            transition: all 0.8s ease;\n        }\n\n        .fade-in.visible {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    \u003c\/style\u003e\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader class=\"header\"\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav class=\"nav\"\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n                \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n    \u003c!-- Hero Section --\u003e\n    \u003csection class=\"hero\"\u003e\n        \u003cdiv class=\"hero-bg\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"hero-content\"\u003e\n            \u003ch1 class=\"hero-title\"\u003eVelvet Vice\u003c\/h1\u003e\n            \u003cp class=\"hero-subtitle\"\u003eThe Quiet Power of Indulgence\u003c\/p\u003e\n            \u003cp class=\"hero-edition\"\u003eLimited Edition of 15\u003c\/p\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Velvet%20Vice\" class=\"cta-button\"\u003eRequest Details\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Video Section --\u003e\n    \u003csection class=\"video-section fade-in\"\u003e\n        \u003cdiv class=\"video-container\"\u003e\n            \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/XkDjkgFEj4c\" allowfullscreen allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\u003e\n            \u003c\/iframe\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Description Section --\u003e\n    \u003csection class=\"description-section fade-in\"\u003e\n        \u003cdiv class=\"section-divider\"\u003e\u003c\/div\u003e\n        \u003cp class=\"description-text\"\u003eDangerously refined. Unapologetically composed.\u003c\/p\u003e\n        \u003cp class=\"description-text\"\u003eA sculpted profile emerges from shadow—crafted for luxury interiors and fine art collectors who understand that true power never announces itself.\u003c\/p\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Backstory Section --\u003e\n    \u003csection class=\"backstory-section fade-in\"\u003e\n        \u003cdiv class=\"backstory-content\"\u003e\n            \u003ch2 class=\"section-title\"\u003eThe Moment Before the Rules Bend\u003c\/h2\u003e\n            \u003cp class=\"backstory-text\"\u003e\n                Velvet Vice captures the moment just before the rules bend. A sculpted profile emerges from shadow—eyes hidden behind oversized noir frames, lips parted with deliberate calm. The cigarette is not rebellion. It is control. This figure does not seek approval, permission, or understanding. She exists in full command of her own narrative.\n            \u003c\/p\u003e\n            \u003cp class=\"backstory-text\"\u003e\n                Rendered in monochrome with luminous sculptural highlights, Velvet Vice channels old-world glamour and modern dominance. The composition is intimate yet untouchable—an icon of restraint wrapped in indulgence.\n            \u003c\/p\u003e\n            \u003cp class=\"backstory-text\"\u003e\n                This artwork belongs in spaces curated for confidence, sensual intelligence, and quiet luxury. It transforms walls into statements and rooms into moods.\n            \u003c\/p\u003e\n            \u003cp class=\"backstory-text\"\u003e\n                Velvet Vice does not decorate a space. It defines it.\n            \u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Features Section --\u003e\n    \u003csection class=\"features-section fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n        \u003cdiv class=\"features-grid\"\u003e\n            \u003cdiv class=\"feature-card\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n                \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n                \u003cp class=\"feature-text\"\u003eOnly 15 prints will ever exist. Each piece is individually numbered and authenticated, ensuring exclusivity and long-term value for discerning collectors.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"feature-card\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n                \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n                \u003cp class=\"feature-text\"\u003eMuseum-grade archival pigment inks on premium fine art substrates ensure exceptional tonal depth, sculptural contrast, and 100+ year longevity.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"feature-card\"\u003e\n                \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n                \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n                \u003cp class=\"feature-text\"\u003eNoir figurative works maintain strong demand in luxury hospitality and private collections, offering both aesthetic gravitas and appreciating value.\u003c\/p\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003csection class=\"stats-section fade-in\"\u003e\n        \u003cdiv class=\"stats-grid\"\u003e\n            \u003cdiv class=\"stat-card\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e15\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat-card\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eYear Longevity\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat-card\"\u003e\n                \u003cdiv class=\"stat-number\"\u003e2025\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eRelease Year\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"stat-card\"\u003e\n                \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n                \u003cdiv class=\"stat-label\"\u003eGrade Quality\u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Curated Pairings --\u003e\n    \u003csection class=\"pairings-section fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eCurated Pairings\u003c\/h2\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eMidnight Authority — The Woman Who Never Explains\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eA commanding noir portrait exploring feminine power through shadow and silence.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eVeiled Power — Kasian Noir Series\u003c\/h3\u003e\n            \u003cp class=\"pairing-description\"\u003eMystery and authority captured in sculptural monochrome—elegance that refuses transparency.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cp style=\"text-align: center; margin-top: 2rem; color: var(--text-secondary); font-family: var(--serif); font-size: 1.1rem;\"\u003e\n            Together, they form \u003cem\u003eThe Noir Indulgence Collection\u003c\/em\u003e—artworks curated for luxury interiors that flirt with danger while remaining impeccably composed.\n        \u003c\/p\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Collection CTA --\u003e\n    \u003csection class=\"collection-cta fade-in\"\u003e\n        \u003cp class=\"collection-name\"\u003eExplore the Emotional Figurative Collection\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button\"\u003eView Collection\u003c\/a\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Investment Positioning --\u003e\n    \u003csection class=\"investment-section fade-in\"\u003e\n        \u003ch2 class=\"section-title\"\u003eDesigned for Discerning Spaces\u003c\/h2\u003e\n        \u003cdiv class=\"spaces-list\"\u003e\n            \u003cspan class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003ePrivate Lounges\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eExecutive Dressing Rooms\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003ePenthouse Corridors\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eCollector Salons\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Luxury Brand Strip --\u003e\n    \u003csection class=\"brand-strip fade-in\"\u003e\n        \u003cp class=\"brand-label\"\u003eCurated for the world's finest venues\u003c\/p\u003e\n        \u003cdiv class=\"brand-names\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Final CTA --\u003e\n    \u003csection class=\"final-cta fade-in\"\u003e\n        \u003ch2 class=\"final-cta-title\"\u003eBegin Your Acquisition\u003c\/h2\u003e\n        \u003cp class=\"final-cta-text\"\u003eVelvet Vice is available for private collectors, luxury hospitality brands, and curated residential interiors. Inquire for pricing, framing options, and delivery timelines.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Velvet%20Vice\" class=\"cta-button\"\u003eContact Kristina\u003c\/a\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Footer --\u003e\n    \u003cfooter class=\"footer\"\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eEmail\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-text\"\u003e© 2025 Kasian Art Studio. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/footer\u003e\n\n    \u003c!-- Scroll Animations --\u003e\n    \u003cscript\u003e\n        \/\/ Fade-in on scroll\n        const observerOptions = {\n            threshold: 0.1,\n            rootMargin: '0px 0px -50px 0px'\n        };\n\n        const observer = new IntersectionObserver(function(entries) {\n            entries.forEach(entry =\u003e {\n                if (entry.isIntersecting) {\n                    entry.target.classList.add('visible');\n                }\n            });\n        }, observerOptions);\n\n        document.querySelectorAll('.fade-in').forEach(element =\u003e {\n            observer.observe(element);\n        });\n\n        \/\/ Header scroll effect\n        let lastScroll = 0;\n        window.addEventListener('scroll', () =\u003e {\n            const currentScroll = window.pageYOffset;\n            const header = document.querySelector('.header');\n            \n            if (currentScroll \u003e 100) {\n                header.style.padding = '1rem 5%';\n            } else {\n                header.style.padding = '1.5rem 5%';\n            }\n            \n            lastScroll = currentScroll;\n        });\n    \u003c\/script\u003e\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47414859858085,"sku":"5790347_16039","price":10764.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47414859890853,"sku":"5790347_16045","price":10764.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47414859923621,"sku":"5790347_15700","price":10764.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/11768910-5C51-4BE4-B513-8CFB3DCB6E46.png?v=1768949024"},{"product_id":"whispered-poise","title":"Whispered Poise — Limited Edition Black \u0026 White Portrait","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eWhispered Poise | Luxury Black \u0026amp; White Portrait Art\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade black and white portrait artwork. Limited edition luxury fine art for collectors, designers, and refined interiors.\"\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400\u0026amp;family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400\u0026amp;family=Raleway:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #111111;\n        --bg-tertiary: #161616;\n        --text-primary: #f5f5f5;\n        --text-secondary: #a8a8a8;\n        --text-muted: #6a6a6a;\n        --accent: #c9c9c9;\n        --accent-hover: #e5e5e5;\n        --divider: #2a2a2a;\n        --serif: 'Cormorant Garamond', Georgia, serif;\n        --display: 'Playfair Display', Georgia, serif;\n        --sans: 'Raleway', 'Helvetica Neue', sans-serif;\n    }\n\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: var(--serif);\n        background-color: var(--bg-primary);\n        color: var(--text-primary);\n        line-height: 1.7;\n        overflow-x: hidden;\n    }\n\n    \/* Scrollbar Styling *\/\n    ::-webkit-scrollbar {\n        width: 6px;\n    }\n    ::-webkit-scrollbar-track {\n        background: var(--bg-primary);\n    }\n    ::-webkit-scrollbar-thumb {\n        background: var(--divider);\n        border-radius: 3px;\n    }\n    ::-webkit-scrollbar-thumb:hover {\n        background: var(--text-muted);\n    }\n\n    \/* Fixed Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        padding: 1.5rem 4rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);\n        transition: all 0.4s ease;\n    }\n\n    .header.scrolled {\n        background: rgba(10,10,10,0.98);\n        padding: 1rem 4rem;\n        backdrop-filter: blur(10px);\n    }\n\n    .logo {\n        font-family: var(--display);\n        font-size: 1.4rem;\n        font-weight: 400;\n        letter-spacing: 0.15em;\n        color: var(--text-primary);\n        text-decoration: none;\n        text-transform: uppercase;\n    }\n\n    .nav {\n        display: flex;\n        gap: 3rem;\n    }\n\n    .nav a {\n        font-family: var(--sans);\n        font-size: 0.75rem;\n        font-weight: 400;\n        letter-spacing: 0.2em;\n        color: var(--text-secondary);\n        text-decoration: none;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        position: relative;\n    }\n\n    .nav a::after {\n        content: '';\n        position: absolute;\n        bottom: -4px;\n        left: 0;\n        width: 0;\n        height: 1px;\n        background: var(--accent);\n        transition: width 0.3s ease;\n    }\n\n    .nav a:hover {\n        color: var(--text-primary);\n    }\n\n    .nav a:hover::after {\n        width: 100%;\n    }\n\n    \/* Hero Section *\/\n    .hero {\n        min-height: 100vh;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n        padding: 8rem 2rem 4rem;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: \n            radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),\n            radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.015) 0%, transparent 50%);\n        pointer-events: none;\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 1;\n        max-width: 900px;\n        animation: fadeInUp 1.2s ease-out;\n    }\n\n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(40px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    .tagline {\n        font-family: var(--sans);\n        font-size: 0.7rem;\n        font-weight: 400;\n        letter-spacing: 0.4em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n        animation: fadeInUp 1.2s ease-out 0.2s both;\n    }\n\n    .hero-title {\n        font-family: var(--display);\n        font-size: clamp(3rem, 8vw, 6rem);\n        font-weight: 400;\n        line-height: 1.1;\n        letter-spacing: 0.02em;\n        margin-bottom: 1.5rem;\n        animation: fadeInUp 1.2s ease-out 0.3s both;\n    }\n\n    .hero-subtitle {\n        font-family: var(--serif);\n        font-size: 1.3rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        animation: fadeInUp 1.2s ease-out 0.4s both;\n    }\n\n    .edition-badge {\n        display: inline-block;\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        font-weight: 500;\n        letter-spacing: 0.3em;\n        color: var(--accent);\n        text-transform: uppercase;\n        padding: 0.8rem 2rem;\n        border: 1px solid var(--divider);\n        margin-bottom: 3rem;\n        animation: fadeInUp 1.2s ease-out 0.5s both;\n    }\n\n    .cta-button {\n        display: inline-block;\n        font-family: var(--sans);\n        font-size: 0.7rem;\n        font-weight: 500;\n        letter-spacing: 0.25em;\n        color: var(--bg-primary);\n        background: var(--text-primary);\n        text-decoration: none;\n        text-transform: uppercase;\n        padding: 1.2rem 3.5rem;\n        transition: all 0.4s ease;\n        animation: fadeInUp 1.2s ease-out 0.6s both;\n    }\n\n    .cta-button:hover {\n        background: var(--accent);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 40px rgba(255,255,255,0.1);\n    }\n\n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        animation: fadeInUp 1.2s ease-out 1s both, float 2s ease-in-out infinite 2s;\n    }\n\n    @keyframes float {\n        0%, 100% { transform: translateX(-50%) translateY(0); }\n        50% { transform: translateX(-50%) translateY(10px); }\n    }\n\n    .scroll-indicator span {\n        display: block;\n        width: 1px;\n        height: 60px;\n        background: linear-gradient(to bottom, var(--divider) 0%, transparent 100%);\n    }\n\n    \/* Video Section *\/\n    .video-section {\n        padding: 6rem 2rem;\n        background: var(--bg-secondary);\n    }\n\n    .video-container {\n        max-width: 1000px;\n        margin: 0 auto;\n        position: relative;\n        aspect-ratio: 16\/9;\n        overflow: hidden;\n    }\n\n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        border: none;\n    }\n\n    .video-frame {\n        position: absolute;\n        top: -1px;\n        left: -1px;\n        right: -1px;\n        bottom: -1px;\n        border: 1px solid var(--divider);\n        pointer-events: none;\n    }\n\n    \/* Description Section *\/\n    .description-section {\n        padding: 8rem 2rem;\n        text-align: center;\n    }\n\n    .section-content {\n        max-width: 800px;\n        margin: 0 auto;\n    }\n\n    .divider {\n        width: 60px;\n        height: 1px;\n        background: var(--divider);\n        margin: 0 auto 3rem;\n    }\n\n    .section-title {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-weight: 400;\n        margin-bottom: 2rem;\n    }\n\n    .description-text {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        font-weight: 300;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    \/* Backstory Section *\/\n    .backstory-section {\n        padding: 8rem 2rem;\n        background: var(--bg-secondary);\n        position: relative;\n    }\n\n    .backstory-section::before {\n        content: '\"';\n        position: absolute;\n        top: 4rem;\n        left: 10%;\n        font-family: var(--display);\n        font-size: 20rem;\n        color: var(--bg-tertiary);\n        line-height: 1;\n        pointer-events: none;\n    }\n\n    .backstory-content {\n        max-width: 700px;\n        margin: 0 auto;\n        position: relative;\n        z-index: 1;\n    }\n\n    .backstory-label {\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        font-weight: 400;\n        letter-spacing: 0.4em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n    }\n\n    .backstory-text {\n        font-family: var(--serif);\n        font-size: 1.4rem;\n        font-weight: 300;\n        font-style: italic;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    \/* Features Grid *\/\n    .features-section {\n        padding: 8rem 2rem;\n    }\n\n    .features-header {\n        text-align: center;\n        margin-bottom: 5rem;\n    }\n\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(3, 1fr);\n        gap: 3rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n\n    .feature-card {\n        text-align: center;\n        padding: 3rem 2rem;\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .feature-card:hover {\n        border-color: var(--text-muted);\n        transform: translateY(-5px);\n    }\n\n    .feature-icon {\n        width: 48px;\n        height: 48px;\n        margin: 0 auto 1.5rem;\n        stroke: var(--accent);\n        stroke-width: 1;\n        fill: none;\n    }\n\n    .feature-title {\n        font-family: var(--display);\n        font-size: 1.3rem;\n        font-weight: 400;\n        margin-bottom: 1rem;\n    }\n\n    .feature-text {\n        font-family: var(--serif);\n        font-size: 1rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n\n    \/* Edition Stats *\/\n    .edition-section {\n        padding: 6rem 2rem;\n        background: var(--bg-secondary);\n    }\n\n    .edition-grid {\n        display: grid;\n        grid-template-columns: repeat(4, 1fr);\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .edition-stat {\n        padding: 2rem;\n    }\n\n    .stat-number {\n        font-family: var(--display);\n        font-size: 3rem;\n        font-weight: 400;\n        color: var(--text-primary);\n        margin-bottom: 0.5rem;\n    }\n\n    .stat-label {\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        font-weight: 400;\n        letter-spacing: 0.3em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n    }\n\n    \/* Pairings Section *\/\n    .pairings-section {\n        padding: 8rem 2rem;\n    }\n\n    .pairings-content {\n        max-width: 900px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .pairings-label {\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        font-weight: 400;\n        letter-spacing: 0.4em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n    }\n\n    .pairings-list {\n        display: flex;\n        flex-direction: column;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n\n    .pairing-item {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        padding: 1.5rem 2rem;\n        border: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n\n    .pairing-item:hover {\n        border-color: var(--accent);\n        background: rgba(255,255,255,0.02);\n    }\n\n    .pairing-item strong {\n        font-weight: 500;\n        color: var(--text-primary);\n    }\n\n    \/* Collection CTA *\/\n    .collection-section {\n        padding: 6rem 2rem;\n        background: var(--bg-tertiary);\n        text-align: center;\n    }\n\n    .collection-label {\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        font-weight: 400;\n        letter-spacing: 0.4em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        margin-bottom: 1.5rem;\n    }\n\n    .collection-title {\n        font-family: var(--display);\n        font-size: 2rem;\n        font-weight: 400;\n        margin-bottom: 2rem;\n    }\n\n    .collection-link {\n        display: inline-block;\n        font-family: var(--sans);\n        font-size: 0.7rem;\n        font-weight: 400;\n        letter-spacing: 0.2em;\n        color: var(--text-primary);\n        text-decoration: none;\n        text-transform: uppercase;\n        padding: 1rem 2.5rem;\n        border: 1px solid var(--text-primary);\n        transition: all 0.3s ease;\n    }\n\n    .collection-link:hover {\n        background: var(--text-primary);\n        color: var(--bg-primary);\n    }\n\n    \/* Investment Section *\/\n    .investment-section {\n        padding: 8rem 2rem;\n    }\n\n    .investment-content {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .investment-title {\n        font-family: var(--display);\n        font-size: 2rem;\n        font-weight: 400;\n        margin-bottom: 2rem;\n    }\n\n    .investment-text {\n        font-family: var(--serif);\n        font-size: 1.1rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        line-height: 1.9;\n        margin-bottom: 3rem;\n    }\n\n    .spaces-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1rem 2rem;\n        margin-top: 2rem;\n    }\n\n    .space-tag {\n        font-family: var(--sans);\n        font-size: 0.7rem;\n        font-weight: 400;\n        letter-spacing: 0.15em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        padding: 0.6rem 1.2rem;\n        border: 1px solid var(--divider);\n    }\n\n    \/* Luxury Brands Strip *\/\n    .brands-section {\n        padding: 4rem 2rem;\n        background: var(--bg-secondary);\n        text-align: center;\n    }\n\n    .brands-label {\n        font-family: var(--sans);\n        font-size: 0.6rem;\n        font-weight: 400;\n        letter-spacing: 0.4em;\n        color: var(--text-muted);\n        text-transform: uppercase;\n        margin-bottom: 2rem;\n    }\n\n    .brands-list {\n        font-family: var(--display);\n        font-size: 1rem;\n        font-weight: 400;\n        letter-spacing: 0.3em;\n        color: var(--text-muted);\n    }\n\n    \/* Final CTA *\/\n    .final-cta {\n        padding: 10rem 2rem;\n        text-align: center;\n        position: relative;\n    }\n\n    .final-cta::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 50%;\n        transform: translateX(-50%);\n        width: 1px;\n        height: 80px;\n        background: var(--divider);\n    }\n\n    .final-title {\n        font-family: var(--display);\n        font-size: 2.5rem;\n        font-weight: 400;\n        margin-bottom: 1.5rem;\n    }\n\n    .final-subtitle {\n        font-family: var(--serif);\n        font-size: 1.2rem;\n        font-weight: 300;\n        font-style: italic;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n    }\n\n    .inquiry-button {\n        display: inline-block;\n        font-family: var(--sans);\n        font-size: 0.7rem;\n        font-weight: 500;\n        letter-spacing: 0.25em;\n        color: var(--bg-primary);\n        background: var(--text-primary);\n        text-decoration: none;\n        text-transform: uppercase;\n        padding: 1.2rem 3.5rem;\n        transition: all 0.4s ease;\n    }\n\n    .inquiry-button:hover {\n        background: var(--accent);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 40px rgba(255,255,255,0.1);\n    }\n\n    \/* Footer *\/\n    .footer {\n        padding: 4rem 2rem;\n        background: var(--bg-primary);\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-content {\n        max-width: 1200px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n\n    .footer-logo {\n        font-family: var(--display);\n        font-size: 1.1rem;\n        font-weight: 400;\n        letter-spacing: 0.15em;\n        color: var(--text-primary);\n        text-transform: uppercase;\n    }\n\n    .footer-tagline {\n        font-family: var(--serif);\n        font-size: 0.9rem;\n        font-style: italic;\n        color: var(--text-muted);\n        margin-top: 0.5rem;\n    }\n\n    .social-links {\n        display: flex;\n        gap: 2rem;\n    }\n\n    .social-links a {\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        font-weight: 400;\n        letter-spacing: 0.2em;\n        color: var(--text-muted);\n        text-decoration: none;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .social-links a:hover {\n        color: var(--text-primary);\n    }\n\n    .footer-copyright {\n        font-family: var(--sans);\n        font-size: 0.65rem;\n        color: var(--text-muted);\n        letter-spacing: 0.1em;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 1024px) {\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .edition-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    @media (max-width: 768px) {\n        .header {\n            padding: 1rem 2rem;\n        }\n\n        .header.scrolled {\n            padding: 0.8rem 2rem;\n        }\n\n        .nav {\n            display: none;\n        }\n\n        .hero-title {\n            font-size: 2.5rem;\n        }\n\n        .hero-subtitle {\n            font-size: 1.1rem;\n        }\n\n        .edition-grid {\n            grid-template-columns: 1fr 1fr;\n        }\n\n        .footer-content {\n            flex-direction: column;\n            gap: 2rem;\n            text-align: center;\n        }\n\n        .backstory-section::before {\n            font-size: 10rem;\n            left: 5%;\n        }\n    }\n\n    \/* Fade-in animations on scroll *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader class=\"header\" id=\"header\"\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKasian Art Studio\u003c\/a\u003e\n        \u003cnav class=\"nav\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n            \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n        \u003c\/nav\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"tagline\"\u003eMoody · Elegant · Timeless\u003c\/p\u003e\n        \u003ch1 class=\"hero-title\"\u003eWhispered Poise\u003c\/h1\u003e\n        \u003cp class=\"hero-subtitle\"\u003eA study in restraint and seduction — where vulnerability and control exist in perfect balance.\u003c\/p\u003e\n        \u003cdiv class=\"edition-badge\"\u003eLimited Edition · Hand-Numbered\u003c\/div\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Whispered%20Poise\" class=\"cta-button\"\u003eInquire Now\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003e\n        \u003cspan\u003e\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/Ay4dAsWrXo8?rel=0\u0026amp;modestbranding=1\u0026amp;color=white\" title=\"Whispered Poise — Kasian Art Studio\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n        \u003cdiv class=\"video-frame\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\"\u003e\n    \u003cdiv class=\"section-content fade-in\"\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003ch2 class=\"section-title\"\u003eEmotional Architecture\u003c\/h2\u003e\n        \u003cp class=\"description-text\"\u003e\n            Whispered Poise is a museum-grade black-and-white portrait defined by tension, elegance, and quiet authority. The subject emerges from negative space with sculptural precision — soft curls framing a gaze that is both distant and commanding. The exposed shoulder, the deliberate gesture, the restrained palette — every element invites interpretation while withholding certainty.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\"\u003e\n    \u003cdiv class=\"backstory-content fade-in\"\u003e\n        \u003cp class=\"backstory-label\"\u003eThe Vision\u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            She is neither inviting nor distant — she simply exists, unapologetically. Whispered Poise was conceived as an exploration of self-containment: the quiet power found in moments when nothing is being performed. The piece speaks to those who understand that luxury is not volume, but intention.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Grid --\u003e\n\u003csection class=\"features-section\"\u003e\n    \u003cdiv class=\"features-header fade-in\"\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003ch2 class=\"section-title\"\u003eMuseum-Grade Quality\u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003csvg class=\"feature-icon\" viewbox=\"0 0 48 48\"\u003e\n                \u003ccircle cx=\"24\" cy=\"24\" r=\"20\"\u003e\u003c\/circle\u003e\n                \u003cpath d=\"M16 24l6 6 12-12\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eEach piece is individually inspected, hand-numbered, and documented. No additional editions will be produced beyond the stated release — ensuring enduring exclusivity.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003csvg class=\"feature-icon\" viewbox=\"0 0 48 48\"\u003e\n                \u003crect x=\"8\" y=\"8\" width=\"32\" height=\"32\" rx=\"2\"\u003e\u003c\/rect\u003e\n                \u003cline x1=\"8\" y1=\"16\" x2=\"40\" y2=\"16\"\u003e\u003c\/line\u003e\n                \u003cline x1=\"16\" y1=\"8\" x2=\"16\" y2=\"40\"\u003e\u003c\/line\u003e\n            \u003c\/svg\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003ePrinted using museum-grade archival pigment inks on gallery-grade substrates, rated for 100+ years of color fidelity under proper conditions.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003csvg class=\"feature-icon\" viewbox=\"0 0 48 48\"\u003e\n                \u003cpath d=\"M24 4l6 12h14l-11 8 4 14-13-10-13 10 4-14-11-8h14z\"\u003e\u003c\/path\u003e\n            \u003c\/svg\u003e\n            \u003ch3 class=\"feature-title\"\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eEmotional figurative works by emerging artists maintain strong collector demand. Ships with Certificate of Authenticity and complete provenance documentation.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Stats --\u003e\n\u003csection class=\"edition-section\"\u003e\n    \u003cdiv class=\"edition-grid fade-in\"\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eLtd\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Archival\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eCOA\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eIncluded\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2026\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Released\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cdiv class=\"pairings-content fade-in\"\u003e\n        \u003cp class=\"pairings-label\"\u003eCurated For\u003c\/p\u003e\n        \u003ch2 class=\"section-title\"\u003ePairs Well With\u003c\/h2\u003e\n        \u003cdiv class=\"pairings-list\"\u003e\n            \u003cdiv class=\"pairing-item\"\u003e\n\u003cstrong\u003eMinimalist black marble interiors\u003c\/strong\u003e — creating stark, architectural contrast\u003c\/div\u003e\n            \u003cdiv class=\"pairing-item\"\u003e\n\u003cstrong\u003eSoft linen textures and matte brass accents\u003c\/strong\u003e — for warmth without excess\u003c\/div\u003e\n            \u003cdiv class=\"pairing-item\"\u003e\n\u003cstrong\u003eNeutral palettes with architectural lighting\u003c\/strong\u003e — where silence speaks loudly\u003c\/div\u003e\n            \u003cdiv class=\"pairing-item\"\u003e\n\u003cstrong\u003eBoutique hotel bedrooms and private studies\u003c\/strong\u003e — spaces of contemplation\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-section\"\u003e\n    \u003cdiv class=\"fade-in\"\u003e\n        \u003cp class=\"collection-label\"\u003eExplore the Collection\u003c\/p\u003e\n        \u003ch2 class=\"collection-title\"\u003eEmotional Figurative Collection\u003c\/h2\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"collection-link\"\u003eView Collection\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cdiv class=\"investment-content fade-in\"\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003ch2 class=\"investment-title\"\u003eNot Decorative Art\u003c\/h2\u003e\n        \u003cp class=\"investment-text\"\u003e\n            This is emotional architecture — meant to be lived with, contemplated, and quietly felt. Designed for interiors that value nuance over excess, it belongs in spaces where silence speaks loudly.\n        \u003c\/p\u003e\n        \u003cdiv class=\"spaces-list\"\u003e\n            \u003cspan class=\"space-tag\"\u003ePenthouse Bedrooms\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003ePrivate Dressing Rooms\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003eRefined Residential Collections\u003c\/span\u003e\n            \u003cspan class=\"space-tag\"\u003ePrivate Studies\u003c\/span\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands Strip --\u003e\n\u003csection class=\"brands-section\"\u003e\n    \u003cp class=\"brands-label\"\u003eDesigned for the World's Most Discerning Spaces\u003c\/p\u003e\n    \u003cp class=\"brands-list\"\u003eAman  •  Four Seasons  •  St. Regis  •  Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003cdiv class=\"fade-in\"\u003e\n        \u003ch2 class=\"final-title\"\u003eAcquire This Piece\u003c\/h2\u003e\n        \u003cp class=\"final-subtitle\"\u003eFor collectors who understand that luxury is not volume, but intention.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Whispered%20Poise\" class=\"inquiry-button\"\u003eRequest Private Viewing\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv\u003e\n            \u003cdiv class=\"footer-logo\"\u003eKasian Art Studio\u003c\/div\u003e\n            \u003cp class=\"footer-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.youtube.com\/@kasianartstudio\" target=\"_blank\"\u003eYouTube\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"footer-copyright\"\u003e© 2026 Kasian Art Studio, L.L.C. All Rights Reserved.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Header scroll effect\n    const header = document.getElementById('header');\n    window.addEventListener('scroll', () =\u003e {\n        if (window.scrollY \u003e 100) {\n            header.classList.add('scrolled');\n        } else {\n            header.classList.remove('scrolled');\n        }\n    });\n\n    \/\/ Fade-in on scroll\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function(e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth' });\n            }\n        });\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47459438919845,"sku":"1013879_16039","price":10694.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47459438952613,"sku":"1013879_16045","price":10694.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47459438985381,"sku":"1013879_15700","price":10694.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/2AA0E93D-8570-42D3-B361-FCF4267DEE2D.png?v=1769895305"},{"product_id":"blue-hour-muse","title":"Blue Hour Muse — Limited Edition Monochrome Portrait","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eBlue Hour Muse | Luxury Monochrome Portrait Art | Kasian Art Studio\u003c\/title\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade black and white portrait artwork with a striking blue focal accent. Designed for luxury interiors, collectors, and boutique hospitality spaces.\"\u003e\n    \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400\u0026amp;family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500\u0026amp;family=Montserrat:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n    \u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n```\n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #111111;\n        --bg-tertiary: #161616;\n        --text-primary: #e8e3d8;\n        --text-secondary: #a09a90;\n        --text-muted: #6b665c;\n        --accent: #4a7fa5;\n        --accent-light: #6baad4;\n        --accent-glow: rgba(74, 127, 165, 0.15);\n        --accent-deep: #2c5a7a;\n        --divider: rgba(232, 227, 216, 0.08);\n    }\n\n    html {\n        scroll-behavior: smooth;\n    }\n\n    body {\n        font-family: 'Cormorant Garamond', serif;\n        background: var(--bg-primary);\n        color: var(--text-primary);\n        overflow-x: hidden;\n        line-height: 1.7;\n    }\n\n    \/* ============ HEADER ============ *\/\n    .header {\n        position: fixed;\n        top: 0;\n        width: 100%;\n        padding: 2rem 5%;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        z-index: 1000;\n        background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);\n        transition: all 0.4s ease;\n    }\n\n    .logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        font-weight: 400;\n        text-transform: uppercase;\n        color: var(--text-primary);\n    }\n\n    .nav a {\n        color: var(--text-primary);\n        text-decoration: none;\n        margin-left: 2.5rem;\n        font-size: 0.85rem;\n        letter-spacing: 1.5px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n        font-family: 'Montserrat', sans-serif;\n        font-weight: 300;\n    }\n\n    .nav a:hover {\n        color: var(--accent-light);\n    }\n\n    \/* ============ HERO ============ *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .hero-bg {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(ellipse at 50% 40%, rgba(74, 127, 165, 0.06) 0%, var(--bg-primary) 70%);\n    }\n\n    \/* Blue gaze pulse animation *\/\n    .hero-gaze-pulse {\n        position: absolute;\n        top: 35%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 300px;\n        height: 300px;\n        border-radius: 50%;\n        background: radial-gradient(circle, rgba(74, 127, 165, 0.08) 0%, transparent 70%);\n        animation: gazePulse 6s ease-in-out infinite;\n        pointer-events: none;\n    }\n\n    @keyframes gazePulse {\n        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }\n        50% { transform: translate(-50%, -50%) scale(1.8); opacity: 0.1; }\n    }\n\n    \/* Floating dust motes *\/\n    .mote {\n        position: absolute;\n        width: 2px;\n        height: 2px;\n        background: rgba(74, 127, 165, 0.3);\n        border-radius: 50%;\n        animation: floatMote linear infinite;\n        pointer-events: none;\n    }\n\n    .mote:nth-child(1) { left: 15%; top: 20%; animation-duration: 18s; animation-delay: 0s; }\n    .mote:nth-child(2) { left: 75%; top: 60%; animation-duration: 22s; animation-delay: -4s; width: 1.5px; height: 1.5px; }\n    .mote:nth-child(3) { left: 40%; top: 80%; animation-duration: 20s; animation-delay: -8s; }\n    .mote:nth-child(4) { left: 85%; top: 30%; animation-duration: 25s; animation-delay: -12s; width: 1px; height: 1px; }\n    .mote:nth-child(5) { left: 25%; top: 50%; animation-duration: 19s; animation-delay: -6s; }\n\n    @keyframes floatMote {\n        0% { transform: translateY(0) translateX(0); opacity: 0; }\n        15% { opacity: 0.6; }\n        50% { transform: translateY(-120px) translateX(30px); opacity: 0.3; }\n        85% { opacity: 0.5; }\n        100% { transform: translateY(-250px) translateX(-20px); opacity: 0; }\n    }\n\n    .hero-content {\n        position: relative;\n        z-index: 2;\n        text-align: center;\n        max-width: 900px;\n        padding: 0 5%;\n    }\n\n    .hero-edition {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.75rem;\n        letter-spacing: 4px;\n        text-transform: uppercase;\n        color: var(--accent-light);\n        margin-bottom: 2rem;\n        opacity: 0;\n        animation: fadeInDown 1s ease-out 0.3s forwards;\n    }\n\n    .hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: 5rem;\n        font-weight: 400;\n        letter-spacing: 2px;\n        margin-bottom: 1.5rem;\n        line-height: 1.1;\n        opacity: 0;\n        animation: fadeInUp 1.2s ease-out 0.5s forwards;\n    }\n\n    .hero h1 .accent {\n        color: var(--accent-light);\n        font-style: italic;\n    }\n\n    .hero-tagline {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.8rem;\n        letter-spacing: 5px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        margin-bottom: 2.5rem;\n        opacity: 0;\n        animation: fadeInUp 1s ease-out 0.8s forwards;\n    }\n\n    .hero-description {\n        font-size: 1.25rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        max-width: 600px;\n        margin: 0 auto 3rem;\n        line-height: 1.8;\n        font-style: italic;\n        opacity: 0;\n        animation: fadeInUp 1s ease-out 1s forwards;\n    }\n\n    .hero-cta {\n        display: inline-block;\n        padding: 1rem 3rem;\n        border: 1px solid var(--accent);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.8rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        opacity: 0;\n        animation: fadeInUp 1s ease-out 1.2s forwards;\n    }\n\n    .hero-cta:hover {\n        background: var(--accent);\n        color: #0a0a0a;\n        box-shadow: 0 0 40px var(--accent-glow);\n    }\n\n    @keyframes fadeInUp {\n        from { opacity: 0; transform: translateY(30px); }\n        to { opacity: 1; transform: translateY(0); }\n    }\n\n    @keyframes fadeInDown {\n        from { opacity: 0; transform: translateY(-20px); }\n        to { opacity: 1; transform: translateY(0); }\n    }\n\n    .scroll-indicator {\n        position: absolute;\n        bottom: 3rem;\n        left: 50%;\n        transform: translateX(-50%);\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        gap: 0.5rem;\n        opacity: 0;\n        animation: fadeInUp 1s ease-out 1.5s forwards;\n    }\n\n    .scroll-line {\n        width: 1px;\n        height: 40px;\n        background: linear-gradient(to bottom, var(--accent), transparent);\n        animation: scrollPulse 2s ease-in-out infinite;\n    }\n\n    @keyframes scrollPulse {\n        0%, 100% { opacity: 0.3; transform: scaleY(0.6); }\n        50% { opacity: 0.8; transform: scaleY(1); }\n    }\n\n    \/* ============ SECTIONS SHARED ============ *\/\n    section {\n        padding: 8rem 5%;\n    }\n\n    .section-label {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.7rem;\n        letter-spacing: 4px;\n        text-transform: uppercase;\n        color: var(--accent);\n        margin-bottom: 1.5rem;\n    }\n\n    .section-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.8rem;\n        font-weight: 400;\n        margin-bottom: 2rem;\n        line-height: 1.2;\n    }\n\n    .divider {\n        width: 60px;\n        height: 1px;\n        background: var(--accent);\n        margin: 3rem auto;\n    }\n\n    .fade-in {\n        opacity: 0;\n        transform: translateY(25px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n\n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* ============ VIDEO SECTION ============ *\/\n    .video-section {\n        background: var(--bg-secondary);\n        text-align: center;\n    }\n\n    .video-wrapper {\n        max-width: 900px;\n        margin: 0 auto;\n        position: relative;\n        padding-bottom: 56.25%;\n        height: 0;\n        overflow: hidden;\n        border: 1px solid var(--divider);\n    }\n\n    .video-wrapper iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        border: none;\n    }\n\n    \/* ============ DESCRIPTION SECTION ============ *\/\n    .description-section {\n        max-width: 800px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .description-section .description-text {\n        font-size: 1.2rem;\n        font-weight: 300;\n        line-height: 2;\n        color: var(--text-secondary);\n    }\n\n    .description-section .description-text p {\n        margin-bottom: 1.5rem;\n    }\n\n    \/* ============ BACKSTORY SECTION ============ *\/\n    .backstory-section {\n        background: var(--bg-secondary);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .backstory-section::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        right: 0;\n        width: 40%;\n        height: 100%;\n        background: radial-gradient(ellipse at 80% 50%, var(--accent-glow), transparent 60%);\n        pointer-events: none;\n    }\n\n    .backstory-inner {\n        max-width: 750px;\n        margin: 0 auto;\n        position: relative;\n        z-index: 1;\n    }\n\n    .backstory-inner .backstory-text {\n        font-size: 1.2rem;\n        font-weight: 300;\n        line-height: 2;\n        color: var(--text-secondary);\n        font-style: italic;\n    }\n\n    .backstory-inner .backstory-text p {\n        margin-bottom: 1.5rem;\n    }\n\n    .backstory-quote {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.8rem;\n        font-weight: 400;\n        font-style: italic;\n        color: var(--accent-light);\n        text-align: center;\n        margin: 3rem 0;\n        line-height: 1.5;\n    }\n\n    \/* ============ FEATURES GRID ============ *\/\n    .features-section {\n        text-align: center;\n    }\n\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(3, 1fr);\n        gap: 3rem;\n        max-width: 1100px;\n        margin: 4rem auto 0;\n    }\n\n    .feature-card {\n        padding: 3rem 2rem;\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n        position: relative;\n    }\n\n    .feature-card::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 50%;\n        transform: translateX(-50%);\n        width: 40px;\n        height: 1px;\n        background: var(--accent);\n        transition: width 0.4s ease;\n    }\n\n    .feature-card:hover::before {\n        width: 80px;\n    }\n\n    .feature-card:hover {\n        border-color: rgba(74, 127, 165, 0.2);\n        background: rgba(74, 127, 165, 0.03);\n    }\n\n    .feature-icon {\n        font-size: 1.5rem;\n        color: var(--accent-light);\n        margin-bottom: 1.5rem;\n    }\n\n    .feature-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        font-weight: 400;\n        margin-bottom: 1rem;\n    }\n\n    .feature-card p {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.85rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n\n    \/* ============ EDITION STATS ============ *\/\n    .edition-section {\n        background: var(--bg-secondary);\n        text-align: center;\n    }\n\n    .edition-grid {\n        display: grid;\n        grid-template-columns: repeat(4, 1fr);\n        gap: 2rem;\n        max-width: 1000px;\n        margin: 4rem auto 0;\n    }\n\n    .edition-stat {\n        padding: 2.5rem 1.5rem;\n        border: 1px solid var(--divider);\n        transition: all 0.4s ease;\n    }\n\n    .edition-stat:hover {\n        border-color: rgba(74, 127, 165, 0.25);\n    }\n\n    .edition-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 2.5rem;\n        font-weight: 400;\n        color: var(--accent-light);\n        margin-bottom: 0.5rem;\n    }\n\n    .edition-label {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.7rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n    }\n\n    \/* ============ PAIRINGS SECTION ============ *\/\n    .pairings-section {\n        text-align: center;\n    }\n\n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(2, 1fr);\n        gap: 2.5rem;\n        max-width: 900px;\n        margin: 4rem auto 0;\n    }\n\n    .pairing-card {\n        padding: 3rem 2.5rem;\n        border: 1px solid var(--divider);\n        text-align: left;\n        transition: all 0.4s ease;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .pairing-card::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 0;\n        width: 100%;\n        height: 2px;\n        background: linear-gradient(90deg, transparent, var(--accent), transparent);\n        opacity: 0;\n        transition: opacity 0.4s ease;\n    }\n\n    .pairing-card:hover::after {\n        opacity: 1;\n    }\n\n    .pairing-card:hover {\n        border-color: rgba(74, 127, 165, 0.2);\n    }\n\n    .pairing-card h3 {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.4rem;\n        font-weight: 400;\n        margin-bottom: 0.75rem;\n    }\n\n    .pairing-card p {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.85rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        line-height: 1.7;\n    }\n\n    \/* ============ COLLECTION CTA ============ *\/\n    .collection-section {\n        background: var(--bg-secondary);\n        text-align: center;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .collection-section::before {\n        content: '';\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        width: 500px;\n        height: 500px;\n        border-radius: 50%;\n        background: radial-gradient(circle, var(--accent-glow), transparent 60%);\n        pointer-events: none;\n    }\n\n    .collection-inner {\n        position: relative;\n        z-index: 1;\n    }\n\n    .collection-link {\n        display: inline-block;\n        padding: 1.1rem 3.5rem;\n        border: 1px solid var(--accent);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.8rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        transition: all 0.4s ease;\n        margin-top: 2rem;\n    }\n\n    .collection-link:hover {\n        background: var(--accent);\n        color: var(--bg-primary);\n        box-shadow: 0 0 50px var(--accent-glow);\n    }\n\n    \/* ============ INVESTMENT SECTION ============ *\/\n    .investment-section {\n        text-align: center;\n    }\n\n    .investment-section .section-body {\n        max-width: 700px;\n        margin: 0 auto;\n        font-size: 1.15rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        line-height: 2;\n    }\n\n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1rem;\n        margin-top: 3rem;\n    }\n\n    .space-tag {\n        padding: 0.6rem 1.5rem;\n        border: 1px solid var(--divider);\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.75rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        transition: all 0.3s ease;\n    }\n\n    .space-tag:hover {\n        border-color: var(--accent);\n        color: var(--accent-light);\n    }\n\n    \/* ============ LUXURY BRAND STRIP ============ *\/\n    .brand-strip {\n        background: var(--bg-secondary);\n        padding: 5rem 5%;\n        text-align: center;\n    }\n\n    .brand-strip-label {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.7rem;\n        letter-spacing: 4px;\n        text-transform: uppercase;\n        color: var(--text-muted);\n        margin-bottom: 2rem;\n    }\n\n    .brand-names {\n        font-family: 'Playfair Display', serif;\n        font-size: 1.3rem;\n        font-weight: 400;\n        color: var(--text-secondary);\n        letter-spacing: 3px;\n    }\n\n    .brand-names span {\n        margin: 0 1.5rem;\n        opacity: 0.6;\n        transition: opacity 0.3s ease;\n    }\n\n    .brand-names span:hover {\n        opacity: 1;\n        color: var(--accent-light);\n    }\n\n    \/* ============ FINAL CTA ============ *\/\n    .final-cta-section {\n        text-align: center;\n        padding: 10rem 5%;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .final-cta-section::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        background: radial-gradient(ellipse at 50% 50%, rgba(74, 127, 165, 0.04) 0%, transparent 50%);\n        pointer-events: none;\n    }\n\n    .final-cta-inner {\n        position: relative;\n        z-index: 1;\n    }\n\n    .final-cta-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        font-weight: 400;\n        margin-bottom: 1.5rem;\n        line-height: 1.3;\n    }\n\n    .final-cta-subtitle {\n        font-size: 1.15rem;\n        font-weight: 300;\n        color: var(--text-secondary);\n        margin-bottom: 1rem;\n        font-style: italic;\n    }\n\n    .final-cta-email {\n        display: inline-block;\n        color: var(--accent-light);\n        text-decoration: none;\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.85rem;\n        letter-spacing: 2px;\n        padding: 1rem 0;\n        border-bottom: 1px solid var(--accent);\n        transition: all 0.3s ease;\n        margin-top: 1.5rem;\n    }\n\n    .final-cta-email:hover {\n        color: var(--text-primary);\n        border-bottom-color: var(--text-primary);\n    }\n\n    \/* ============ FOOTER ============ *\/\n    .footer {\n        background: var(--bg-secondary);\n        padding: 4rem 5%;\n        text-align: center;\n        border-top: 1px solid var(--divider);\n    }\n\n    .footer-links {\n        display: flex;\n        justify-content: center;\n        gap: 2.5rem;\n        margin-bottom: 2rem;\n    }\n\n    .footer-links a {\n        color: var(--text-muted);\n        text-decoration: none;\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.8rem;\n        letter-spacing: 1.5px;\n        text-transform: uppercase;\n        transition: color 0.3s ease;\n    }\n\n    .footer-links a:hover {\n        color: var(--accent-light);\n    }\n\n    .footer-copyright {\n        font-family: 'Montserrat', sans-serif;\n        font-size: 0.7rem;\n        letter-spacing: 1px;\n        color: var(--text-muted);\n        opacity: 0.5;\n    }\n\n    \/* ============ RESPONSIVE ============ *\/\n    @media (max-width: 1024px) {\n        .hero h1 {\n            font-size: 3.5rem;\n        }\n\n        .features-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .edition-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n    }\n\n    @media (max-width: 768px) {\n        .header {\n            padding: 1.2rem 5%;\n        }\n\n        .nav {\n            display: none;\n        }\n\n        .hero h1 {\n            font-size: 2.8rem;\n        }\n\n        .hero-description {\n            font-size: 1.1rem;\n        }\n\n        .section-title {\n            font-size: 2.2rem;\n        }\n\n        .features-grid {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n\n        .edition-grid {\n            grid-template-columns: repeat(2, 1fr);\n        }\n\n        .pairings-grid {\n            grid-template-columns: 1fr;\n        }\n\n        .brand-names span {\n            display: block;\n            margin: 0.5rem 0;\n        }\n\n        .final-cta-title {\n            font-size: 2.2rem;\n        }\n\n        section {\n            padding: 5rem 5%;\n        }\n\n        .backstory-quote {\n            font-size: 1.4rem;\n        }\n    }\n\n    @media (max-width: 480px) {\n        .hero h1 {\n            font-size: 2.2rem;\n        }\n\n        .edition-grid {\n            grid-template-columns: 1fr 1fr;\n            gap: 1rem;\n        }\n\n        .target-spaces {\n            flex-direction: column;\n            align-items: center;\n        }\n    }\n\u003c\/style\u003e\n```\n\n\n\n\n```\n\u003c!-- Header --\u003e\n\u003cheader class=\"header\"\u003e\n    \u003cdiv class=\"logo\"\u003eKasian Art Studio\u003c\/div\u003e\n    \u003cnav class=\"nav\"\u003e\n        \u003ca href=\"#artwork\"\u003eArtwork\u003c\/a\u003e\n        \u003ca href=\"#story\"\u003eStory\u003c\/a\u003e\n        \u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\n        \u003ca href=\"#inquire\"\u003eInquire\u003c\/a\u003e\n    \u003c\/nav\u003e\n\u003c\/header\u003e\n\n\u003c!-- Hero --\u003e\n\u003csection class=\"hero\" id=\"artwork\"\u003e\n    \u003cdiv class=\"hero-bg\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-gaze-pulse\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"mote\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"mote\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"mote\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"mote\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"mote\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003cp class=\"hero-edition\"\u003eLimited Edition — Hand Numbered\u003c\/p\u003e\n        \u003ch1\u003eBlue Hour \u003cspan class=\"accent\"\u003eMuse\u003c\/span\u003e\n\u003c\/h1\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody · Elegant · Timeless\u003c\/p\u003e\n        \u003cp class=\"hero-description\"\u003eA study in confidence and quiet seduction. Power through restraint, gaze, and impeccable composure.\u003c\/p\u003e\n        \u003ca href=\"#inquire\" class=\"hero-cta\"\u003eCollector Inquiry\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"scroll-indicator\"\u003e\n        \u003cdiv class=\"scroll-line\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"video-section\" id=\"video\"\u003e\n    \u003cp class=\"section-label fade-in\"\u003eExperience the Artwork\u003c\/p\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eIn Motion\u003c\/h2\u003e\n    \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"video-wrapper fade-in\" style=\"margin-top: 3rem;\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/Eo5GHfuilnk?rel=0\u0026amp;modestbranding=1\u0026amp;color=white\" title=\"Blue Hour Muse — Kasian Art Studio\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n        \u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"description-section\" id=\"description\"\u003e\n    \u003cp class=\"section-label fade-in\"\u003eThe Artwork\u003c\/p\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eIdentity Rendered Still\u003c\/h2\u003e\n    \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"description-text fade-in\"\u003e\n        \u003cp\u003eBlue Hour Muse is a museum-grade monochrome portrait defined by contrast, poise, and unapologetic femininity. Rendered primarily in sculpted grayscale, the composition is interrupted by a single, arresting detail — a luminous blue eye that commands attention without excess.\u003c\/p\u003e\n        \u003cp\u003eThe subject's posture is relaxed yet intentional. Draped in black, she exists between exposure and control, vulnerability and authority. The composition avoids spectacle in favor of precision, allowing negative space, texture, and gaze to do the work.\u003c\/p\u003e\n        \u003cp\u003eThis piece is designed for interiors that understand restraint as luxury. It belongs in penthouse bedrooms, private dressing rooms, boutique hotel suites, and collector spaces where intimacy and sophistication coexist. The restrained palette allows the work to integrate seamlessly while still asserting undeniable presence.\u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory-section\" id=\"story\"\u003e\n    \u003cdiv class=\"backstory-inner\"\u003e\n        \u003cp class=\"section-label fade-in\"\u003eCinematic Backstory\u003c\/p\u003e\n        \u003ch2 class=\"section-title fade-in\"\u003eThe Moment Before Night Settles\u003c\/h2\u003e\n        \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n        \u003cdiv class=\"backstory-text fade-in\"\u003e\n            \u003cp\u003eBlue Hour Muse was created as an exploration of the moment just before night fully settles — when light softens, confidence sharpens, and presence becomes unmistakable. The blue eye serves not as ornament, but as intention: a single note held longer than expected.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cp class=\"backstory-quote fade-in\"\u003e\"This work reflects self-possession — the kind that requires no audience.\"\u003c\/p\u003e\n        \u003cdiv class=\"backstory-text fade-in\"\u003e\n            \u003cp\u003eThis is not decorative portraiture — it is identity rendered still.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Grid --\u003e\n\u003csection class=\"features-section\" id=\"details\"\u003e\n    \u003cp class=\"section-label fade-in\"\u003eMuseum-Grade Quality\u003c\/p\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eCrafted for Permanence\u003c\/h2\u003e\n    \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp\u003eEach print is hand-numbered with no additional editions produced beyond the stated release. Scarcity is by design — not afterthought.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◈\u003c\/div\u003e\n            \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp\u003ePrinted using museum-grade archival inks on premium substrates rated for long-term display. Non-reflective, gallery-quality finish ensures tonal integrity for 100+ years.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n            \u003ch3\u003eInvestment Ready\u003c\/h3\u003e\n            \u003cp\u003eMonochrome figurative portraits maintain enduring demand among collectors and luxury hospitality spaces. Every piece includes full provenance documentation.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Edition Stats --\u003e\n\u003csection class=\"edition-section\"\u003e\n    \u003cp class=\"section-label fade-in\"\u003eEdition Details\u003c\/p\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eThe Numbers\u003c\/h2\u003e\n    \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"edition-grid\"\u003e\n        \u003cdiv class=\"edition-stat fade-in\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e50\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eTotal Editions\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat fade-in\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e100+\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eYear Archival Rating\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat fade-in\"\u003e\n            \u003cdiv class=\"edition-number\"\u003e1\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eSingular Blue Accent\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"edition-stat fade-in\"\u003e\n            \u003cdiv class=\"edition-number\"\u003eCOA\u003c\/div\u003e\n            \u003cdiv class=\"edition-label\"\u003eCertificate Included\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Curated Pairings --\u003e\n\u003csection class=\"pairings-section\"\u003e\n    \u003cp class=\"section-label fade-in\"\u003eCurated Pairings\u003c\/p\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eCollected Together\u003c\/h2\u003e\n    \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3\u003eVeiled Allure\u003c\/h3\u003e\n            \u003cp\u003eA shadowed figurative portrait exploring concealment, mystery, and the space between disclosure and restraint. The perfect counterpoint in tone and mood.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-in\"\u003e\n            \u003ch3\u003eWhispered Poise\u003c\/h3\u003e\n            \u003cp\u003eQuiet elegance in monochrome — a study in composure and understated power that creates a powerful dialogue when paired with Blue Hour Muse.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection Exploration --\u003e\n\u003csection class=\"collection-section\"\u003e\n    \u003cdiv class=\"collection-inner\"\u003e\n        \u003cp class=\"section-label fade-in\"\u003eExplore the Collection\u003c\/p\u003e\n        \u003ch2 class=\"section-title fade-in\"\u003eBlack \u0026amp; White Luxury Collection\u003c\/h2\u003e\n        \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n        \u003cp class=\"fade-in\" style=\"font-size: 1.15rem; font-weight: 300; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.9;\"\u003e\n            Blue Hour Muse is part of the Kasian Art Studio portrait collection — curated for collectors and luxury interiors seeking intimacy, restraint, and enduring presence.\n        \u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"collection-link fade-in\" target=\"_blank\"\u003eView Full Collection\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Positioning --\u003e\n\u003csection class=\"investment-section\"\u003e\n    \u003cp class=\"section-label fade-in\"\u003eDesigned For\u003c\/p\u003e\n    \u003ch2 class=\"section-title fade-in\"\u003eSpaces That Understand Restraint\u003c\/h2\u003e\n    \u003cdiv class=\"divider fade-in\"\u003e\u003c\/div\u003e\n    \u003cp class=\"section-body fade-in\"\u003e\n        Blue Hour Muse was created for interiors where restraint is the ultimate luxury. Its restrained palette and commanding gaze integrate seamlessly while asserting undeniable presence.\n    \u003c\/p\u003e\n    \u003cdiv class=\"target-spaces fade-in\"\u003e\n        \u003cspan class=\"space-tag\"\u003ePenthouse Bedrooms\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003ePrivate Dressing Rooms\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eCollector Corridors\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eLuxury Residences\u003c\/span\u003e\n        \u003cspan class=\"space-tag\"\u003eDesigner Interiors\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brand Strip --\u003e\n\u003csection class=\"brand-strip\"\u003e\n    \u003cp class=\"brand-strip-label fade-in\"\u003eTrusted by the World's Finest Hospitality Brands\u003c\/p\u003e\n    \u003cdiv class=\"brand-names fade-in\"\u003e\n        \u003cspan\u003eAman\u003c\/span\u003e\n        \u003cspan\u003e•\u003c\/span\u003e\n        \u003cspan\u003eFour Seasons\u003c\/span\u003e\n        \u003cspan\u003e•\u003c\/span\u003e\n        \u003cspan\u003eSt. Regis\u003c\/span\u003e\n        \u003cspan\u003e•\u003c\/span\u003e\n        \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta-section\" id=\"inquire\"\u003e\n    \u003cdiv class=\"final-cta-inner\"\u003e\n        \u003cp class=\"section-label fade-in\"\u003eBegin Your Acquisition\u003c\/p\u003e\n        \u003ch2 class=\"final-cta-title fade-in\"\u003eOne Glance. Everything Held.\u003c\/h2\u003e\n        \u003cp class=\"final-cta-subtitle fade-in\"\u003eMuseum-grade provenance. Collector-ready documentation.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Collector%20Inquiry%3A%20Blue%20Hour%20Muse\" class=\"final-cta-email fade-in\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-links\"\u003e\n        \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\"\u003eInstagram\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\"\u003ePinterest\u003c\/a\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\"\u003eStudio\u003c\/a\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"footer-copyright\"\u003e© 2026 Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n\u003c\/footer\u003e\n\n\u003c!-- Scroll Animation Script --\u003e\n\u003cscript\u003e\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth', block: 'start' });\n            }\n        });\n    });\n\n    \/\/ Header scroll effect\n    window.addEventListener('scroll', () =\u003e {\n        const header = document.querySelector('.header');\n        if (window.pageYOffset \u003e 100) {\n            header.style.padding = '1rem 5%';\n            header.style.background = 'rgba(10,10,10,0.97)';\n        } else {\n            header.style.padding = '2rem 5%';\n            header.style.background = 'linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%)';\n        }\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47474052169893,"sku":"2892958_17633","price":18736.99,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47474052202661,"sku":"2892958_17640","price":18736.99,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47474052235429,"sku":"2892958_17647","price":18736.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/08BF960D-047A-4835-A4E9-D13884379E16.png?v=1770337237"},{"product_id":"velvet-interruption","title":"Velvet Interruption — Limited Edition Monochrome Portrait","description":"\u003cbody\u003e\n\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003cmeta name=\"title\" content=\"Velvet Interruption | Luxury Monochrome Portrait Art\"\u003e\n    \u003cmeta name=\"description\" content=\"Museum-grade black and white portrait artwork exploring concealment, intimacy, and restraint. Designed for luxury interiors and collectors.\"\u003e\n    \u003ctitle\u003eVelvet Interruption | Luxury Monochrome Portrait Art\u003c\/title\u003e\n\n```\n\u003c!-- Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700\u0026amp;family=Playfair+Display:wght@400;500;600;700\u0026amp;family=Inter:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n    \n    :root {\n        --bg-primary: #0a0a0a;\n        --bg-secondary: #121212;\n        --text-primary: #f5f5f5;\n        --text-secondary: #b8b8b8;\n        --accent: #666666;\n        --accent-light: #8a8a8a;\n        --divider: #2a2a2a;\n    }\n    \n    body {\n        font-family: 'Inter', sans-serif;\n        background-color: var(--bg-primary);\n        color: var(--text-primary);\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n    \n    \/* Header *\/\n    .header {\n        position: fixed;\n        top: 0;\n        left: 0;\n        right: 0;\n        z-index: 1000;\n        background: rgba(10, 10, 10, 0.95);\n        backdrop-filter: blur(10px);\n        border-bottom: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n    \n    .header-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 1.5rem 3rem;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n    }\n    \n    .logo {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        font-weight: 300;\n        letter-spacing: 2px;\n        color: var(--text-primary);\n        text-decoration: none;\n    }\n    \n    .nav {\n        display: flex;\n        gap: 3rem;\n    }\n    \n    .nav a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.875rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n        text-transform: uppercase;\n    }\n    \n    .nav a:hover {\n        color: var(--text-primary);\n    }\n    \n    \/* Hero Section *\/\n    .hero {\n        height: 100vh;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        overflow: hidden;\n        padding-top: 80px;\n    }\n    \n    .hero::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        background: radial-gradient(circle at 30% 50%, rgba(102, 102, 102, 0.08), transparent 60%);\n        animation: pulseGlow 8s ease-in-out infinite;\n    }\n    \n    @keyframes pulseGlow {\n        0%, 100% { opacity: 0.3; }\n        50% { opacity: 0.6; }\n    }\n    \n    .hero-content {\n        text-align: center;\n        z-index: 10;\n        max-width: 900px;\n        padding: 0 2rem;\n        animation: fadeInUp 1.2s ease-out;\n    }\n    \n    @keyframes fadeInUp {\n        from {\n            opacity: 0;\n            transform: translateY(30px);\n        }\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n    \n    .hero-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 5rem;\n        font-weight: 400;\n        letter-spacing: -1px;\n        margin-bottom: 1rem;\n        line-height: 1.1;\n    }\n    \n    .hero-edition {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n        text-transform: uppercase;\n    }\n    \n    .hero-tagline {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        font-style: italic;\n        color: var(--accent-light);\n        margin-bottom: 3rem;\n        letter-spacing: 1px;\n    }\n    \n    .cta-button {\n        display: inline-block;\n        padding: 1rem 3rem;\n        background: transparent;\n        border: 1px solid var(--accent);\n        color: var(--text-primary);\n        text-decoration: none;\n        font-size: 0.875rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        transition: all 0.3s ease;\n        font-family: 'Inter', sans-serif;\n    }\n    \n    .cta-button:hover {\n        background: var(--accent);\n        transform: translateY(-2px);\n        box-shadow: 0 10px 30px rgba(102, 102, 102, 0.2);\n    }\n    \n    \/* Section Container *\/\n    .section {\n        max-width: 1400px;\n        margin: 0 auto;\n        padding: 8rem 3rem;\n    }\n    \n    .section-narrow {\n        max-width: 900px;\n        margin: 0 auto;\n        padding: 8rem 3rem;\n    }\n    \n    \/* Video Section *\/\n    .video-container {\n        position: relative;\n        width: 100%;\n        max-width: 1200px;\n        margin: 0 auto;\n        padding-bottom: 56.25%;\n        background: var(--bg-secondary);\n        border-radius: 4px;\n        overflow: hidden;\n        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);\n    }\n    \n    .video-container iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        border: none;\n    }\n    \n    \/* Description Section *\/\n    .description-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 2rem;\n        text-align: center;\n        letter-spacing: -0.5px;\n    }\n    \n    .description-text {\n        font-size: 1.125rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        text-align: center;\n        max-width: 800px;\n        margin: 0 auto 3rem;\n    }\n    \n    .divider {\n        width: 100px;\n        height: 1px;\n        background: var(--accent);\n        margin: 4rem auto;\n    }\n    \n    \/* Backstory Section *\/\n    .backstory {\n        background: var(--bg-secondary);\n        padding: 8rem 3rem;\n    }\n    \n    .backstory-content {\n        max-width: 900px;\n        margin: 0 auto;\n    }\n    \n    .backstory-title {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 2.5rem;\n        margin-bottom: 3rem;\n        text-align: center;\n        letter-spacing: 1px;\n    }\n    \n    .backstory-text {\n        font-size: 1.125rem;\n        line-height: 1.9;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n    \n    \/* Features Grid *\/\n    .features-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 4rem;\n        margin-top: 5rem;\n    }\n    \n    .feature {\n        text-align: center;\n    }\n    \n    .feature-icon {\n        font-size: 2.5rem;\n        margin-bottom: 1.5rem;\n        color: var(--accent);\n    }\n    \n    .feature-title {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n    }\n    \n    .feature-text {\n        color: var(--text-secondary);\n        line-height: 1.8;\n    }\n    \n    \/* Edition Stats *\/\n    .edition-stats {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n        gap: 3rem;\n        margin-top: 5rem;\n        padding: 4rem;\n        background: var(--bg-secondary);\n        border-radius: 4px;\n    }\n    \n    .stat {\n        text-align: center;\n    }\n    \n    .stat-number {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        color: var(--accent);\n        margin-bottom: 0.5rem;\n    }\n    \n    .stat-label {\n        font-size: 0.875rem;\n        color: var(--text-secondary);\n        letter-spacing: 2px;\n        text-transform: uppercase;\n    }\n    \n    \/* Pairings Section *\/\n    .pairings {\n        background: var(--bg-secondary);\n        padding: 8rem 3rem;\n    }\n    \n    .pairings-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        text-align: center;\n        margin-bottom: 4rem;\n        letter-spacing: -0.5px;\n    }\n    \n    .pairings-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n        gap: 3rem;\n        max-width: 1200px;\n        margin: 0 auto;\n    }\n    \n    .pairing-item {\n        padding: 2rem;\n        background: var(--bg-primary);\n        border: 1px solid var(--divider);\n        transition: all 0.3s ease;\n    }\n    \n    .pairing-item:hover {\n        border-color: var(--accent);\n        transform: translateY(-5px);\n    }\n    \n    .pairing-title {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        margin-bottom: 1rem;\n        letter-spacing: 1px;\n    }\n    \n    .pairing-text {\n        color: var(--text-secondary);\n        line-height: 1.8;\n        font-size: 0.95rem;\n    }\n    \n    \/* Collection CTA *\/\n    .collection-cta {\n        text-align: center;\n        padding: 8rem 3rem;\n    }\n    \n    .collection-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 2rem;\n        letter-spacing: -0.5px;\n    }\n    \n    .collection-text {\n        font-size: 1.125rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 700px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n    \n    \/* Investment Section *\/\n    .investment {\n        background: var(--bg-secondary);\n        padding: 8rem 3rem;\n    }\n    \n    .investment-content {\n        max-width: 1000px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .investment-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 3rem;\n        margin-bottom: 2rem;\n        letter-spacing: -0.5px;\n    }\n    \n    .investment-text {\n        font-size: 1.125rem;\n        color: var(--text-secondary);\n        line-height: 1.9;\n        margin-bottom: 3rem;\n    }\n    \n    .target-spaces {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1.5rem;\n        margin-top: 3rem;\n    }\n    \n    .space-tag {\n        padding: 0.75rem 1.5rem;\n        background: var(--bg-primary);\n        border: 1px solid var(--divider);\n        font-size: 0.875rem;\n        letter-spacing: 1px;\n        color: var(--text-secondary);\n    }\n    \n    \/* Luxury Brands Strip *\/\n    .brands {\n        padding: 6rem 3rem;\n        text-align: center;\n    }\n    \n    .brands-intro {\n        font-size: 0.875rem;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        color: var(--text-secondary);\n        margin-bottom: 2rem;\n    }\n    \n    .brands-list {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.5rem;\n        color: var(--accent-light);\n        letter-spacing: 2px;\n    }\n    \n    \/* Final CTA *\/\n    .final-cta {\n        background: var(--bg-secondary);\n        padding: 10rem 3rem;\n        text-align: center;\n    }\n    \n    .final-cta-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 4rem;\n        margin-bottom: 2rem;\n        letter-spacing: -1px;\n    }\n    \n    .final-cta-text {\n        font-size: 1.125rem;\n        color: var(--text-secondary);\n        margin-bottom: 3rem;\n        max-width: 600px;\n        margin-left: auto;\n        margin-right: auto;\n    }\n    \n    \/* Footer *\/\n    .footer {\n        border-top: 1px solid var(--divider);\n        padding: 4rem 3rem;\n    }\n    \n    .footer-content {\n        max-width: 1400px;\n        margin: 0 auto;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        flex-wrap: wrap;\n        gap: 2rem;\n    }\n    \n    .footer-logo {\n        font-family: 'Cormorant Garamond', serif;\n        font-size: 1.25rem;\n        letter-spacing: 2px;\n    }\n    \n    .footer-links {\n        display: flex;\n        gap: 2rem;\n    }\n    \n    .footer-links a {\n        color: var(--text-secondary);\n        text-decoration: none;\n        font-size: 0.875rem;\n        letter-spacing: 1px;\n        transition: color 0.3s ease;\n    }\n    \n    .footer-links a:hover {\n        color: var(--text-primary);\n    }\n    \n    .social-links {\n        display: flex;\n        gap: 1.5rem;\n    }\n    \n    .social-links a {\n        color: var(--text-secondary);\n        font-size: 1.25rem;\n        transition: color 0.3s ease;\n    }\n    \n    .social-links a:hover {\n        color: var(--accent-light);\n    }\n    \n    \/* Responsive *\/\n    @media (max-width: 768px) {\n        .header-content {\n            padding: 1rem 1.5rem;\n        }\n        \n        .nav {\n            display: none;\n        }\n        \n        .hero-title {\n            font-size: 3rem;\n        }\n        \n        .section,\n        .section-narrow,\n        .backstory,\n        .pairings,\n        .collection-cta,\n        .investment,\n        .brands,\n        .final-cta {\n            padding: 4rem 1.5rem;\n        }\n        \n        .description-title,\n        .collection-title,\n        .investment-title {\n            font-size: 2rem;\n        }\n        \n        .final-cta-title {\n            font-size: 2.5rem;\n        }\n        \n        .features-grid,\n        .edition-stats {\n            grid-template-columns: 1fr;\n            gap: 2rem;\n        }\n        \n        .footer-content {\n            flex-direction: column;\n            text-align: center;\n        }\n    }\n    \n    \/* Scroll Animations *\/\n    .fade-in {\n        opacity: 0;\n        transform: translateY(30px);\n        transition: opacity 0.8s ease, transform 0.8s ease;\n    }\n    \n    .fade-in.visible {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\u003c\/style\u003e\n```\n\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader class=\"header\"\u003e\n        \u003cdiv class=\"header-content\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKASIAN ART STUDIO\u003c\/a\u003e\n            \u003cnav class=\"nav\"\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n                \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/contact\"\u003eInquire\u003c\/a\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n```\n\u003c!-- Hero Section --\u003e\n\u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-content\"\u003e\n        \u003ch1 class=\"hero-title\"\u003eVelvet Interruption\u003c\/h1\u003e\n        \u003cp class=\"hero-edition\"\u003eLimited Edition Monochrome Portrait\u003c\/p\u003e\n        \u003cp class=\"hero-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Velvet%20Interruption\" class=\"cta-button\"\u003eRequest Pricing \u0026amp; Availability\u003c\/a\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Video Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003cdiv class=\"video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/XRmpJ_nkNYU?si=687lZTIESVgLtHMB\" allowfullscreen\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Description Section --\u003e\n\u003csection class=\"section-narrow\"\u003e\n    \u003ch2 class=\"description-title\"\u003eA Moment Withheld\u003c\/h2\u003e\n    \u003cp class=\"description-text\"\u003e\n        Velvet Interruption captures intimacy through concealment, shadow, and deliberate restraint. A museum-grade monochrome portrait defined by tension and control.\n    \u003c\/p\u003e\n    \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n    \u003cp class=\"description-text\"\u003e\n        The composition reveals only what is necessary — sculpted lips parted, lashes lowered, the face partially obscured by a dark plane that interrupts the gaze just before certainty arrives. The absence is intentional. By denying full access, the work heightens presence.\n    \u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Backstory Section --\u003e\n\u003csection class=\"backstory\"\u003e\n    \u003cdiv class=\"backstory-content\"\u003e\n        \u003ch2 class=\"backstory-title\"\u003eCinematic Backstory\u003c\/h2\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Velvet Interruption was conceived around the idea that withholding can be more powerful than revealing. Inspired by editorial fashion photography and gallery minimalism, the work captures a suspended moment — where confidence exists without performance, and intimacy is implied rather than offered.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            It reflects a philosophy of luxury rooted in control.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            Light falls softly across skin, carving form from shadow, while negative space amplifies the subject's quiet authority. The result is a portrait that feels editorial, cinematic, and deeply self-possessed.\n        \u003c\/p\u003e\n        \u003cp class=\"backstory-text\"\u003e\n            This piece belongs in interiors that value suggestion over statement: penthouse bedrooms, private lounges, boutique hotel suites, and collector spaces where luxury is expressed through restraint. It does not ask to be seen — it assumes attention.\n        \u003c\/p\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Features Section --\u003e\n\u003csection class=\"section\"\u003e\n    \u003ch2 class=\"description-title\"\u003eMuseum-Grade Excellence\u003c\/h2\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eLimited Edition\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eHand-numbered edition with collector provenance documentation. No additional editions will be produced beyond the stated release.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eArchival Quality\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eMuseum-grade archival pigment print on premium substrate, rated for long-term display under proper conditions.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature fade-in\"\u003e\n            \u003cdiv class=\"feature-icon\"\u003e◆\u003c\/div\u003e\n            \u003ch3 class=\"feature-title\"\u003eGallery Presentation\u003c\/h3\u003e\n            \u003cp class=\"feature-text\"\u003eNon-reflective gallery finish ensures optimal viewing in luxury interiors. Includes Certificate of Authenticity.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Edition Stats --\u003e\n    \u003cdiv class=\"edition-stats\"\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003e2026\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eYear Released\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eLimited\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eEdition Size\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eMuseum\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eGrade Materials\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"stat\"\u003e\n            \u003cdiv class=\"stat-number\"\u003eGallery\u003c\/div\u003e\n            \u003cdiv class=\"stat-label\"\u003eQuality Finish\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Pairings Section --\u003e\n\u003csection class=\"pairings\"\u003e\n    \u003ch2 class=\"pairings-title\"\u003eCurated Pairings\u003c\/h2\u003e\n    \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-item fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eMinimal Walls\u003c\/h3\u003e\n            \u003cp class=\"pairing-text\"\u003eWhite or stone walls with gallery lighting allow the monochrome drama to command attention without competition.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eNeutral Interiors\u003c\/h3\u003e\n            \u003cp class=\"pairing-text\"\u003eMatte black, charcoal, and soft neutral palettes create sophisticated environments where restraint speaks loudest.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003ePrivate Spaces\u003c\/h3\u003e\n            \u003cp class=\"pairing-text\"\u003eBedrooms, dressing rooms, and executive suites where intimacy and control are expressed through design.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-item fade-in\"\u003e\n            \u003ch3 class=\"pairing-title\"\u003eBoutique Hotels\u003c\/h3\u003e\n            \u003cp class=\"pairing-text\"\u003eGallery corridors and curated hotel suites seeking editorial sophistication and timeless elegance.\u003c\/p\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Collection CTA --\u003e\n\u003csection class=\"collection-cta\"\u003e\n    \u003ch2 class=\"collection-title\"\u003eExplore the Collection\u003c\/h2\u003e\n    \u003cp class=\"collection-text\"\u003e\n        Velvet Interruption is part of the Emotional Figurative Collection — a curated series exploring intimacy, power, and human presence through refined portraiture.\n    \u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/emotional-figurative-collection\" class=\"cta-button\"\u003eView Full Collection\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Investment Section --\u003e\n\u003csection class=\"investment\"\u003e\n    \u003cdiv class=\"investment-content\"\u003e\n        \u003ch2 class=\"investment-title\"\u003eInvestment Positioning\u003c\/h2\u003e\n        \u003cp class=\"investment-text\"\u003e\n            Velvet Interruption is not about mystery for its own sake. It is about power in choosing what remains unseen. Designed for collectors and luxury interiors that understand restraint as the ultimate expression of authority.\n        \u003c\/p\u003e\n        \n        \u003ch3 class=\"backstory-title\" style=\"margin-top: 4rem;\"\u003eIdeal Spaces\u003c\/h3\u003e\n        \u003cdiv class=\"target-spaces\"\u003e\n            \u003cdiv class=\"space-tag\"\u003ePenthouse Bedrooms\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003ePrivate Lounges\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eBoutique Hotel Suites\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eExecutive Offices\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eGallery Corridors\u003c\/div\u003e\n            \u003cdiv class=\"space-tag\"\u003eCollector Spaces\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- Luxury Brands Strip --\u003e\n\u003csection class=\"brands\"\u003e\n    \u003cp class=\"brands-intro\"\u003eCollected by clients of\u003c\/p\u003e\n    \u003cp class=\"brands-list\"\u003eAman • Four Seasons • St. Regis • Ritz-Carlton Reserve\u003c\/p\u003e\n\u003c\/section\u003e\n\n\u003c!-- Final CTA --\u003e\n\u003csection class=\"final-cta\"\u003e\n    \u003ch2 class=\"final-cta-title\"\u003eBegin Your Inquiry\u003c\/h2\u003e\n    \u003cp class=\"final-cta-text\"\u003e\n        Velvet Interruption is available for private consultation. Contact us to discuss pricing, sizing, and availability.\n    \u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry:%20Velvet%20Interruption\" class=\"cta-button\"\u003eContact Kristina\u003c\/a\u003e\n\u003c\/section\u003e\n\n\u003c!-- Footer --\u003e\n\u003cfooter class=\"footer\"\u003e\n    \u003cdiv class=\"footer-content\"\u003e\n        \u003cdiv class=\"footer-logo\"\u003eKASIAN ART STUDIO\u003c\/div\u003e\n        \u003cdiv class=\"footer-links\"\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/contact\"\u003eContact\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"social-links\"\u003e\n            \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" aria-label=\"Instagram\"\u003eIG\u003c\/a\u003e\n            \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\" aria-label=\"Pinterest\"\u003ePIN\u003c\/a\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n    \/\/ Smooth scroll for anchor links\n    document.querySelectorAll('a[href^=\"#\"]').forEach(anchor =\u003e {\n        anchor.addEventListener('click', function (e) {\n            e.preventDefault();\n            const target = document.querySelector(this.getAttribute('href'));\n            if (target) {\n                target.scrollIntoView({ behavior: 'smooth' });\n            }\n        });\n    });\n\n    \/\/ Scroll animation observer\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -100px 0px'\n    };\n\n    const observer = new IntersectionObserver((entries) =\u003e {\n        entries.forEach(entry =\u003e {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('visible');\n            }\n        });\n    }, observerOptions);\n\n    document.querySelectorAll('.fade-in').forEach(el =\u003e {\n        observer.observe(el);\n    });\n\n    \/\/ Header scroll effect\n    let lastScroll = 0;\n    const header = document.querySelector('.header');\n\n    window.addEventListener('scroll', () =\u003e {\n        const currentScroll = window.pageYOffset;\n        \n        if (currentScroll \u003e 100) {\n            header.style.padding = '0.75rem 0';\n        } else {\n            header.style.padding = '1.5rem 0';\n        }\n        \n        lastScroll = currentScroll;\n    });\n\u003c\/script\u003e\n```\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47478172778661,"sku":"8732635_16039","price":12314.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47478172811429,"sku":"8732635_16045","price":12314.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47478172844197,"sku":"8732635_15700","price":12314.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/7E4789C0-3749-4155-A9BA-031006679B98.png?v=1770482679"},{"product_id":"hushed-devotion","title":"Hushed Devotion — Limited Edition Monochrome Intimate Study","description":"\u003cbody\u003e\n\n\n\n\u003cmeta charset=\"UTF-8\"\u003e\n\u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\u003ctitle\u003eHushed Devotion | Luxury Monochrome Intimate Art\u003c\/title\u003e\n\u003cmeta name=\"description\" content=\"Museum-grade black and white artwork capturing intimacy and emotional stillness. Designed for refined interiors, collectors, and boutique hospitality spaces.\"\u003e\n\u003cmeta property=\"og:title\" content=\"Hushed Devotion | Luxury Monochrome Intimate Art\"\u003e\n\u003cmeta property=\"og:description\" content=\"Museum-grade black and white artwork capturing intimacy and emotional stillness.\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500\u0026amp;family=Playfair+Display:ital,wght@0,400;0,500;1,400\u0026amp;family=Raleway:wght@300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\u003cstyle\u003e\n  :root {\n    --bg: #0a0a0a;\n    --bg2: #111111;\n    --bg3: #161616;\n    --accent: #b8b8b8;\n    --accent-warm: #c9c9c9;\n    --gold: #a89070;\n    --gold-light: #c4a882;\n    --text: #e8e8e8;\n    --text-muted: #888;\n    --text-dim: #555;\n    --border: rgba(255,255,255,0.06);\n    --border-light: rgba(255,255,255,0.12);\n  }\n\n*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }\n\nhtml { scroll-behavior: smooth; }\n\nbody {\nbackground: var(–bg);\ncolor: var(–text);\nfont-family: ‘Raleway’, sans-serif;\nfont-weight: 300;\noverflow-x: hidden;\ncursor: default;\n}\n\n\/* ─── SCROLLBAR ─── *\/\n::-webkit-scrollbar { width: 2px; }\n::-webkit-scrollbar-track { background: var(–bg); }\n::-webkit-scrollbar-thumb { background: var(–gold); }\n\n\/* ─── HEADER ─── *\/\nheader {\nposition: fixed;\ntop: 0; left: 0; right: 0;\nz-index: 100;\ndisplay: flex;\njustify-content: space-between;\nalign-items: center;\npadding: 1.5rem 3rem;\nbackground: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);\nbackdrop-filter: blur(8px);\ntransition: background 0.4s;\n}\nheader.scrolled { background: rgba(10,10,10,0.97); }\n\n.logo {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 1.1rem;\nfont-weight: 400;\nletter-spacing: 0.25em;\ntext-transform: uppercase;\ncolor: var(–text);\ntext-decoration: none;\n}\n.logo span { color: var(–gold); }\n\nnav { display: flex; gap: 2.5rem; align-items: center; }\nnav a {\nfont-size: 0.65rem;\nletter-spacing: 0.2em;\ntext-transform: uppercase;\ncolor: var(–text-muted);\ntext-decoration: none;\ntransition: color 0.3s;\n}\nnav a:hover { color: var(–text); }\n\n.nav-cta {\nfont-size: 0.6rem !important;\nletter-spacing: 0.2em;\ntext-transform: uppercase;\nborder: 1px solid rgba(168,144,112,0.4);\npadding: 0.5rem 1.2rem;\ncolor: var(–gold) !important;\ntext-decoration: none;\ntransition: all 0.3s !important;\n}\n.nav-cta:hover { background: var(–gold); color: var(–bg) !important; }\n\n\/* ─── HERO ─── *\/\n#hero {\nposition: relative;\nheight: 100vh;\ndisplay: flex;\nalign-items: center;\njustify-content: center;\noverflow: hidden;\n}\n\n.hero-bg {\nposition: absolute;\ninset: 0;\nbackground-image: url(’\/mnt\/user-data\/uploads\/cf6e3f56631cd401068ad4cab565a1df0e3ceea8.png’);\nbackground-size: cover;\nbackground-position: center;\nfilter: brightness(0.35);\ntransform: scale(1.05);\nanimation: heroZoom 20s ease-in-out infinite alternate;\n}\n@keyframes heroZoom {\nfrom { transform: scale(1.05); }\nto { transform: scale(1.12); }\n}\n\n.hero-vignette {\nposition: absolute;\ninset: 0;\nbackground: radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.8) 100%);\n}\n\n.hero-overlay-bottom {\nposition: absolute;\nbottom: 0; left: 0; right: 0;\nheight: 40%;\nbackground: linear-gradient(to top, var(–bg), transparent);\n}\n\n\/* Breath particles *\/\n.particles {\nposition: absolute;\ninset: 0;\npointer-events: none;\noverflow: hidden;\n}\n.particle {\nposition: absolute;\nwidth: 1px;\nheight: 1px;\nbackground: rgba(200,200,200,0.3);\nborder-radius: 50%;\nanimation: drift linear infinite;\n}\n@keyframes drift {\n0% { transform: translateY(100vh) translateX(0); opacity: 0; }\n10% { opacity: 1; }\n90% { opacity: 0.5; }\n100% { transform: translateY(-10vh) translateX(var(–drift)); opacity: 0; }\n}\n\n.hero-content {\nposition: relative;\nz-index: 2;\ntext-align: center;\npadding: 0 2rem;\nanimation: fadeUp 1.8s cubic-bezier(0.16,1,0.3,1) both;\n}\n@keyframes fadeUp {\nfrom { opacity: 0; transform: translateY(40px); }\nto { opacity: 1; transform: translateY(0); }\n}\n\n.hero-eyebrow {\nfont-size: 0.6rem;\nletter-spacing: 0.35em;\ntext-transform: uppercase;\ncolor: var(–gold);\nmargin-bottom: 2rem;\nanimation: fadeUp 1.8s 0.2s cubic-bezier(0.16,1,0.3,1) both;\n}\n\n.hero-title {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: clamp(3.5rem, 9vw, 8rem);\nfont-weight: 300;\nline-height: 0.9;\nletter-spacing: -0.02em;\ncolor: var(–text);\nmargin-bottom: 1.5rem;\nanimation: fadeUp 1.8s 0.3s cubic-bezier(0.16,1,0.3,1) both;\n}\n.hero-title em {\nfont-style: italic;\ncolor: rgba(255,255,255,0.6);\n}\n\n.hero-tagline {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 1rem;\nfont-style: italic;\ncolor: var(–text-muted);\nletter-spacing: 0.2em;\nmargin-bottom: 3rem;\nanimation: fadeUp 1.8s 0.45s cubic-bezier(0.16,1,0.3,1) both;\n}\n\n.hero-edition {\ndisplay: inline-block;\nfont-size: 0.58rem;\nletter-spacing: 0.3em;\ntext-transform: uppercase;\nborder: 1px solid var(–border-light);\npadding: 0.5rem 1.5rem;\ncolor: var(–text-muted);\nmargin-bottom: 3rem;\nanimation: fadeUp 1.8s 0.55s cubic-bezier(0.16,1,0.3,1) both;\n}\n\n.hero-ctas {\ndisplay: flex;\ngap: 1.2rem;\njustify-content: center;\nflex-wrap: wrap;\nanimation: fadeUp 1.8s 0.65s cubic-bezier(0.16,1,0.3,1) both;\n}\n\n.btn-primary {\nfont-size: 0.6rem;\nletter-spacing: 0.25em;\ntext-transform: uppercase;\nbackground: var(–gold);\ncolor: #1a1410;\npadding: 1rem 2.8rem;\nborder: none;\ncursor: pointer;\ntext-decoration: none;\ntransition: all 0.3s;\ndisplay: inline-block;\nfont-family: ‘Raleway’, sans-serif;\nfont-weight: 500;\n}\n.btn-primary:hover { background: var(–gold-light); transform: translateY(-2px); }\n\n.btn-ghost {\nfont-size: 0.6rem;\nletter-spacing: 0.25em;\ntext-transform: uppercase;\nbackground: transparent;\ncolor: var(–text-muted);\npadding: 1rem 2.8rem;\nborder: 1px solid rgba(255,255,255,0.15);\ncursor: pointer;\ntext-decoration: none;\ntransition: all 0.3s;\ndisplay: inline-block;\nfont-family: ‘Raleway’, sans-serif;\n}\n.btn-ghost:hover { border-color: var(–text-muted); color: var(–text); }\n\n.scroll-indicator {\nposition: absolute;\nbottom: 2.5rem;\nleft: 50%;\ntransform: translateX(-50%);\ndisplay: flex;\nflex-direction: column;\nalign-items: center;\ngap: 0.5rem;\nanimation: fadeUp 2s 1.2s both;\n}\n.scroll-indicator span {\nfont-size: 0.5rem;\nletter-spacing: 0.3em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\n}\n.scroll-line {\nwidth: 1px;\nheight: 50px;\nbackground: linear-gradient(to bottom, transparent, var(–gold));\nanimation: scrollPulse 2s ease-in-out infinite;\n}\n@keyframes scrollPulse {\n0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }\n50% { opacity: 1; transform: scaleY(1); }\n}\n\n\/* ─── SECTIONS ─── *\/\nsection { padding: 6rem 0; }\n\n.container {\nmax-width: 1100px;\nmargin: 0 auto;\npadding: 0 3rem;\n}\n\n.section-label {\nfont-size: 0.55rem;\nletter-spacing: 0.4em;\ntext-transform: uppercase;\ncolor: var(–gold);\nmargin-bottom: 1.5rem;\ndisplay: block;\n}\n\n.section-title {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: clamp(2rem, 4vw, 3.5rem);\nfont-weight: 300;\nline-height: 1.1;\nmargin-bottom: 1.5rem;\n}\n.section-title em { font-style: italic; color: rgba(255,255,255,0.5); }\n\n.divider {\nwidth: 60px;\nheight: 1px;\nbackground: var(–gold);\nmargin: 2rem 0;\nopacity: 0.6;\n}\n\n\/* ─── DESCRIPTION ─── *\/\n#description { background: var(–bg2); }\n\n.desc-grid {\ndisplay: grid;\ngrid-template-columns: 1fr 1fr;\ngap: 5rem;\nalign-items: start;\n}\n\n.desc-left p {\nfont-size: 1.1rem;\nline-height: 1.9;\ncolor: rgba(232,232,232,0.75);\nfont-family: ‘Cormorant Garamond’, serif;\nfont-style: italic;\nfont-weight: 300;\n}\n\n.desc-right {\npadding-top: 3rem;\n}\n.desc-right p {\nfont-size: 0.85rem;\nline-height: 2;\ncolor: var(–text-muted);\nmargin-bottom: 1.5rem;\n}\n\n.detail-row {\ndisplay: flex;\njustify-content: space-between;\nalign-items: center;\npadding: 0.85rem 0;\nborder-bottom: 1px solid var(–border);\n}\n.detail-label {\nfont-size: 0.55rem;\nletter-spacing: 0.25em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\n}\n.detail-value {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 0.9rem;\ncolor: var(–text);\nfont-weight: 300;\n}\n\n\/* ─── VIDEO ─── *\/\n#video { background: var(–bg); }\n\n.video-wrapper {\nposition: relative;\nmax-width: 880px;\nmargin: 3rem auto 0;\n}\n.video-wrapper::before {\ncontent: ‘’;\nposition: absolute;\ninset: -1px;\nborder: 1px solid var(–border-light);\npointer-events: none;\nz-index: 1;\n}\n.video-wrapper iframe {\ndisplay: block;\nwidth: 100%;\naspect-ratio: 16\/9;\nborder: none;\n}\n\n.video-caption {\ntext-align: center;\nmargin-top: 1.5rem;\nfont-size: 0.6rem;\nletter-spacing: 0.2em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\n}\n\n\/* ─── BACKSTORY ─── *\/\n#backstory { background: var(–bg3); }\n\n.backstory-inner {\nmax-width: 700px;\nmargin: 0 auto;\ntext-align: center;\n}\n.backstory-inner p {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 1.15rem;\nline-height: 2;\ncolor: rgba(232,232,232,0.7);\nmargin-bottom: 2rem;\nfont-weight: 300;\n}\n.backstory-inner p:first-of-type {\nfont-size: 1.4rem;\ncolor: rgba(232,232,232,0.85);\nfont-style: italic;\n}\n\n.pull-quote {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 1.6rem;\nfont-style: italic;\nfont-weight: 300;\ncolor: rgba(255,255,255,0.35);\nborder-left: 1px solid var(–gold);\npadding: 1rem 2rem;\nmargin: 3rem auto;\ntext-align: left;\nmax-width: 600px;\n}\n\n\/* ─── FEATURES ─── *\/\n#features { background: var(–bg2); }\n\n.features-grid {\ndisplay: grid;\ngrid-template-columns: repeat(3, 1fr);\ngap: 2px;\nmargin-top: 3rem;\n}\n\n.feature-card {\nbackground: var(–bg3);\npadding: 2.5rem 2rem;\nposition: relative;\noverflow: hidden;\ntransition: background 0.4s;\n}\n.feature-card::before {\ncontent: ‘’;\nposition: absolute;\ntop: 0; left: 0; right: 0;\nheight: 1px;\nbackground: linear-gradient(90deg, transparent, var(–gold), transparent);\nopacity: 0;\ntransition: opacity 0.4s;\n}\n.feature-card:hover { background: #1a1a1a; }\n.feature-card:hover::before { opacity: 1; }\n\n.feature-icon {\nfont-size: 1.5rem;\nmargin-bottom: 1.2rem;\nopacity: 0.6;\n}\n\n.feature-title {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 1.2rem;\nfont-weight: 400;\nmargin-bottom: 0.8rem;\ncolor: var(–text);\n}\n.feature-title em { font-style: italic; color: var(–gold-light); }\n\n.feature-desc {\nfont-size: 0.78rem;\nline-height: 1.8;\ncolor: var(–text-muted);\n}\n\n\/* ─── EDITION STATS ─── *\/\n#edition-stats { background: var(–bg); }\n\n.stats-grid {\ndisplay: grid;\ngrid-template-columns: repeat(4, 1fr);\ngap: 1px;\nbackground: var(–border);\nborder: 1px solid var(–border);\nmargin-top: 3rem;\n}\n\n.stat-card {\nbackground: var(–bg);\npadding: 3rem 2rem;\ntext-align: center;\n}\n\n.stat-number {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 3.5rem;\nfont-weight: 300;\nline-height: 1;\ncolor: var(–gold);\nmargin-bottom: 0.5rem;\ndisplay: block;\n}\n.stat-label {\nfont-size: 0.55rem;\nletter-spacing: 0.25em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\n}\n\n\/* ─── PAIRINGS ─── *\/\n#pairings { background: var(–bg2); }\n\n.pairings-grid {\ndisplay: grid;\ngrid-template-columns: repeat(2, 1fr);\ngap: 2px;\nmargin-top: 3rem;\n}\n\n.pairing-card {\nbackground: var(–bg3);\npadding: 2.5rem;\nborder-left: 1px solid var(–border);\ntransition: border-color 0.3s;\ncursor: pointer;\n}\n.pairing-card:hover { border-left-color: var(–gold); }\n\n.pairing-title {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 1.3rem;\nfont-weight: 400;\nmargin-bottom: 0.6rem;\ncolor: var(–text);\n}\n.pairing-desc {\nfont-size: 0.78rem;\nline-height: 1.7;\ncolor: var(–text-muted);\n}\n.pairing-arrow {\ndisplay: inline-block;\nmargin-top: 1.2rem;\nfont-size: 0.55rem;\nletter-spacing: 0.25em;\ntext-transform: uppercase;\ncolor: var(–gold);\n}\n\n\/* ─── COLLECTION CTA ─── *\/\n#collection-cta {\nbackground: var(–bg);\ntext-align: center;\npadding: 5rem 0;\n}\n#collection-cta .section-title { margin-bottom: 1rem; }\n#collection-cta p {\nfont-size: 0.85rem;\ncolor: var(–text-muted);\nmargin-bottom: 2.5rem;\nmax-width: 500px;\nmargin-left: auto;\nmargin-right: auto;\n}\n\n\/* ─── INVESTMENT ─── *\/\n#investment { background: var(–bg3); }\n\n.investment-grid {\ndisplay: grid;\ngrid-template-columns: 1fr 1fr;\ngap: 5rem;\nalign-items: start;\n}\n\n.investment-left p {\nfont-size: 0.85rem;\nline-height: 2;\ncolor: var(–text-muted);\nmargin-bottom: 1.5rem;\n}\n\n.spaces-list {\nlist-style: none;\nmargin-top: 2rem;\n}\n.spaces-list li {\nfont-size: 0.78rem;\nletter-spacing: 0.1em;\ncolor: var(–text-muted);\npadding: 0.6rem 0;\nborder-bottom: 1px solid var(–border);\ndisplay: flex;\nalign-items: center;\ngap: 0.8rem;\n}\n.spaces-list li::before {\ncontent: ‘’;\ndisplay: inline-block;\nwidth: 4px;\nheight: 4px;\nbackground: var(–gold);\nborder-radius: 50%;\nflex-shrink: 0;\n}\n\n.investment-right {\nbackground: var(–bg2);\npadding: 3rem;\n}\n.investment-right .section-title { font-size: 2rem; }\n.investment-right p {\nfont-size: 0.82rem;\nline-height: 1.9;\ncolor: var(–text-muted);\nmargin-bottom: 1.5rem;\n}\n.price-range {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 2rem;\nfont-weight: 300;\ncolor: var(–text);\ndisplay: block;\nmargin: 1.5rem 0 0.5rem;\n}\n.price-note {\nfont-size: 0.6rem;\nletter-spacing: 0.2em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\ndisplay: block;\nmargin-bottom: 2rem;\n}\n\n\/* ─── BRAND STRIP ─── *\/\n#brand-strip {\nbackground: var(–bg2);\npadding: 2.5rem 0;\nborder-top: 1px solid var(–border);\nborder-bottom: 1px solid var(–border);\n}\n\n.brand-strip-inner {\ndisplay: flex;\nalign-items: center;\njustify-content: center;\ngap: 0.8rem;\nflex-wrap: wrap;\n}\n\n.brand-label {\nfont-size: 0.5rem;\nletter-spacing: 0.35em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\nmargin-right: 1.5rem;\n}\n\n.brand-name {\nfont-family: ‘Cormorant Garamond’, serif;\nfont-size: 0.85rem;\nletter-spacing: 0.15em;\ncolor: var(–text-dim);\npadding: 0 1.5rem;\nborder-right: 1px solid var(–border);\ntransition: color 0.3s;\n}\n.brand-name:last-child { border-right: none; }\n.brand-name:hover { color: var(–gold-light); }\n\n\/* ─── FINAL CTA ─── *\/\n#final-cta {\nbackground: var(–bg);\ntext-align: center;\npadding: 8rem 0;\nposition: relative;\noverflow: hidden;\n}\n#final-cta::before {\ncontent: ‘’;\nposition: absolute;\ninset: 0;\nbackground: radial-gradient(ellipse at center, rgba(168,144,112,0.04) 0%, transparent 70%);\n}\n#final-cta .section-title {\nfont-size: clamp(2.5rem, 5vw, 5rem);\nmargin-bottom: 1.5rem;\n}\n#final-cta p {\nfont-size: 0.85rem;\ncolor: var(–text-muted);\nmax-width: 480px;\nmargin: 0 auto 3rem;\nline-height: 1.9;\n}\n\n\/* ─── FOOTER ─── *\/\nfooter {\nbackground: var(–bg2);\nborder-top: 1px solid var(–border);\npadding: 4rem 3rem 2rem;\n}\n\n.footer-grid {\nmax-width: 1100px;\nmargin: 0 auto;\ndisplay: grid;\ngrid-template-columns: 2fr 1fr 1fr;\ngap: 4rem;\nmargin-bottom: 4rem;\n}\n\n.footer-brand .logo { font-size: 1rem; }\n.footer-brand p {\nmargin-top: 1rem;\nfont-size: 0.75rem;\nline-height: 1.8;\ncolor: var(–text-dim);\nmax-width: 280px;\n}\n\n.footer-col h4 {\nfont-size: 0.55rem;\nletter-spacing: 0.3em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\nmargin-bottom: 1.5rem;\n}\n.footer-col a {\ndisplay: block;\nfont-size: 0.75rem;\ncolor: var(–text-muted);\ntext-decoration: none;\nmargin-bottom: 0.6rem;\ntransition: color 0.3s;\n}\n.footer-col a:hover { color: var(–text); }\n\n.footer-bottom {\nmax-width: 1100px;\nmargin: 0 auto;\ndisplay: flex;\njustify-content: space-between;\nalign-items: center;\npadding-top: 2rem;\nborder-top: 1px solid var(–border);\n}\n.footer-bottom p {\nfont-size: 0.6rem;\ncolor: var(–text-dim);\nletter-spacing: 0.1em;\n}\n\n.social-links { display: flex; gap: 1.5rem; }\n.social-links a {\nfont-size: 0.55rem;\nletter-spacing: 0.2em;\ntext-transform: uppercase;\ncolor: var(–text-dim);\ntext-decoration: none;\ntransition: color 0.3s;\n}\n.social-links a:hover { color: var(–gold); }\n\n\/* ─── FADE-IN ANIMATIONS ─── *\/\n.fade-in {\nopacity: 0;\ntransform: translateY(30px);\ntransition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);\n}\n.fade-in.visible {\nopacity: 1;\ntransform: translateY(0);\n}\n.fade-in-delay-1 { transition-delay: 0.15s; }\n.fade-in-delay-2 { transition-delay: 0.3s; }\n.fade-in-delay-3 { transition-delay: 0.45s; }\n\n\/* ─── RESPONSIVE ─── *\/\n@media (max-width: 900px) {\nheader { padding: 1.2rem 1.5rem; }\nnav { display: none; }\n.container { padding: 0 1.5rem; }\n.desc-grid, .investment-grid, .features-grid, .pairings-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }\n.stats-grid { grid-template-columns: repeat(2, 1fr); }\n.hero-title { font-size: clamp(3rem, 12vw, 6rem); }\n}\n\u003c\/style\u003e\n\n\n\n\n\u003c!-- HEADER --\u003e\n\n\u003cheader id=\"main-header\"\u003e\n  \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKasian \u003cspan\u003eArt\u003c\/span\u003e Studio\u003c\/a\u003e\n  \u003cnav\u003e\n    \u003ca href=\"#description\"\u003eThe Work\u003c\/a\u003e\n    \u003ca href=\"#backstory\"\u003eStory\u003c\/a\u003e\n    \u003ca href=\"#features\"\u003eDetails\u003c\/a\u003e\n    \u003ca href=\"#investment\"\u003eCollect\u003c\/a\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"nav-cta\"\u003eInquire\u003c\/a\u003e\n  \u003c\/nav\u003e\n\u003c\/header\u003e\n\n\u003c!-- HERO --\u003e\n\n\u003csection id=\"hero\"\u003e\n  \u003cdiv class=\"hero-bg\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"hero-vignette\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"hero-overlay-bottom\"\u003e\u003c\/div\u003e\n  \u003cdiv class=\"particles\" id=\"particles\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"hero-content\"\u003e\n    \u003cspan class=\"hero-eyebrow\"\u003eKasian Art Studio — Limited Edition\u003c\/span\u003e\n    \u003ch1 class=\"hero-title\"\u003eHushed\u003cbr\u003e\u003cem\u003eDevotion\u003c\/em\u003e\n\u003c\/h1\u003e\n    \u003cp class=\"hero-tagline\"\u003eMoody.  Elegant.  Timeless.\u003c\/p\u003e\n    \u003cdiv class=\"hero-edition\"\u003eLimited Edition · Hand-Numbered · Museum Grade\u003c\/div\u003e\n    \u003cdiv class=\"hero-ctas\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"btn-primary\"\u003eInquire to Acquire\u003c\/a\u003e\n      \u003ca href=\"#description\" class=\"btn-ghost\"\u003eExplore the Work\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"scroll-indicator\"\u003e\n    \u003cspan\u003eScroll\u003c\/span\u003e\n    \u003cdiv class=\"scroll-line\"\u003e\u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- DESCRIPTION --\u003e\n\n\u003csection id=\"description\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv class=\"desc-grid\"\u003e\n      \u003cdiv class=\"desc-left fade-in\"\u003e\n        \u003cspan class=\"section-label\"\u003eThe Artwork\u003c\/span\u003e\n        \u003cdiv class=\"divider\"\u003e\u003c\/div\u003e\n        \u003cp\u003eA quiet moment of surrender. Hushed Devotion captures vulnerability, stillness, and emotional gravity in sculpted grayscale — a museum-grade monochrome composition centered on intimacy and quiet strength.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"desc-right fade-in fade-in-delay-1\"\u003e\n        \u003cp\u003eThe frame narrows its focus to what cannot be staged — hands intertwined, a softened profile resting in closeness, breath suspended between presence and pause. There are no dramatic gestures, no overt declarations — only proximity, trust, and a moment held longer than expected.\u003c\/p\u003e\n        \u003cdiv style=\"margin-top: 2rem;\"\u003e\n          \u003cdiv class=\"detail-row\"\u003e\n            \u003cspan class=\"detail-label\"\u003eMedium\u003c\/span\u003e\n            \u003cspan class=\"detail-value\"\u003eArchival Pigment Print\u003c\/span\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"detail-row\"\u003e\n            \u003cspan class=\"detail-label\"\u003eSubstrate\u003c\/span\u003e\n            \u003cspan class=\"detail-value\"\u003eMuseum-Grade Surface\u003c\/span\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"detail-row\"\u003e\n            \u003cspan class=\"detail-label\"\u003eFinish\u003c\/span\u003e\n            \u003cspan class=\"detail-value\"\u003eNon-Reflective Gallery Quality\u003c\/span\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"detail-row\"\u003e\n            \u003cspan class=\"detail-label\"\u003ePalette\u003c\/span\u003e\n            \u003cspan class=\"detail-value\"\u003eMonochrome Grayscale\u003c\/span\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"detail-row\"\u003e\n            \u003cspan class=\"detail-label\"\u003eDocumentation\u003c\/span\u003e\n            \u003cspan class=\"detail-value\"\u003eCertificate of Authenticity\u003c\/span\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- VIDEO --\u003e\n\n\u003csection id=\"video\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv style=\"text-align:center;\" class=\"fade-in\"\u003e\n      \u003cspan class=\"section-label\"\u003eExperience the Work\u003c\/span\u003e\n      \u003ch2 class=\"section-title\"\u003eSee \u003cem\u003eHushed Devotion\u003c\/em\u003e in Detail\u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"video-wrapper fade-in fade-in-delay-1\"\u003e\n      \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/AAsH0vrWqio\" title=\"Hushed Devotion — Kasian Art Studio\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n      \u003c\/iframe\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"video-caption\"\u003eHushed Devotion — © Kasian Art Studio. All rights reserved.\u003c\/p\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BACKSTORY --\u003e\n\n\u003csection id=\"backstory\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv class=\"backstory-inner\"\u003e\n      \u003cspan class=\"section-label fade-in\"\u003eThe Story Behind the Work\u003c\/span\u003e\n      \u003ch2 class=\"section-title fade-in fade-in-delay-1\"\u003eConceived in \u003cem\u003eSilence\u003c\/em\u003e\n\u003c\/h2\u003e\n\n```\n  \u003cdiv class=\"pull-quote fade-in fade-in-delay-2\"\u003e\n    \"Hushed Devotion does not perform intimacy. It preserves it.\"\n  \u003c\/div\u003e\n\n  \u003cp class=\"fade-in\"\u003eHushed Devotion was conceived as an exploration of closeness without spectacle. Inspired by the quiet language of touch, the piece focuses on what remains after the noise fades — trust, surrender, and presence.\u003c\/p\u003e\n\n  \u003cp class=\"fade-in fade-in-delay-1\"\u003eThe composition narrows intentionally, eliminating excess so the viewer confronts only what matters. It is a portrait of connection in its purest form — rendered in layered grayscale where tonal transitions are deliberate and sculptural.\u003c\/p\u003e\n\n  \u003cp class=\"fade-in fade-in-delay-2\"\u003eLight moves gently across form, creating depth without distraction. This work is designed for interiors that honor emotional resonance over spectacle. It belongs in private bedrooms, boutique hotel suites, refined lounges, and collector spaces where art is meant to be felt as much as seen.\u003c\/p\u003e\n\u003c\/div\u003e\n```\n\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FEATURES --\u003e\n\n\u003csection id=\"features\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv class=\"fade-in\" style=\"text-align:center;\"\u003e\n      \u003cspan class=\"section-label\"\u003eMuseum-Grade Excellence\u003c\/span\u003e\n      \u003ch2 class=\"section-title\"\u003eCrafted for \u003cem\u003eCollectors\u003c\/em\u003e\n\u003c\/h2\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"features-grid\"\u003e\n      \u003cdiv class=\"feature-card fade-in\"\u003e\n        \u003cdiv class=\"feature-icon\"\u003e◈\u003c\/div\u003e\n        \u003ch3 class=\"feature-title\"\u003e\n\u003cem\u003eLimited Edition\u003c\/em\u003e — Numbered\u003c\/h3\u003e\n        \u003cp class=\"feature-desc\"\u003eOnly a finite number of prints will ever exist. Each edition is hand-numbered and permanently registered to ensure irreplaceable rarity and long-term collectible value.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card fade-in fade-in-delay-1\"\u003e\n        \u003cdiv class=\"feature-icon\"\u003e◉\u003c\/div\u003e\n        \u003ch3 class=\"feature-title\"\u003e\n\u003cem\u003eArchival Quality\u003c\/em\u003e — Enduring\u003c\/h3\u003e\n        \u003cp class=\"feature-desc\"\u003eMuseum-grade archival inks and premium substrates rated for long-term display under proper conditions. Tonal integrity and depth preserved for generations.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"feature-card fade-in fade-in-delay-2\"\u003e\n        \u003cdiv class=\"feature-icon\"\u003e◇\u003c\/div\u003e\n        \u003ch3 class=\"feature-title\"\u003e\n\u003cem\u003eInvestment Ready\u003c\/em\u003e — Documented\u003c\/h3\u003e\n        \u003cp class=\"feature-desc\"\u003eIncludes Certificate of Authenticity and full collector provenance documentation. Monochrome fine art maintains strong, stable demand in the luxury collector market.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- EDITION STATS --\u003e\n\n\u003csection id=\"edition-stats\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv class=\"fade-in\" style=\"text-align:center;\"\u003e\n      \u003cspan class=\"section-label\"\u003eEdition Details\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"stats-grid fade-in fade-in-delay-1\"\u003e\n      \u003cdiv class=\"stat-card\"\u003e\n        \u003cspan class=\"stat-number\"\u003eLtd\u003c\/span\u003e\n        \u003cspan class=\"stat-label\"\u003eEdition Size\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"stat-card\"\u003e\n        \u003cspan class=\"stat-number\"\u003e1\u003c\/span\u003e\n        \u003cspan class=\"stat-label\"\u003eCertificate per Print\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"stat-card\"\u003e\n        \u003cspan class=\"stat-number\"\u003e∞\u003c\/span\u003e\n        \u003cspan class=\"stat-label\"\u003eArchival Longevity\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"stat-card\"\u003e\n        \u003cspan class=\"stat-number\"\u003e0\u003c\/span\u003e\n        \u003cspan class=\"stat-label\"\u003eAdditional Editions Ever\u003c\/span\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- PAIRINGS --\u003e\n\n\u003csection id=\"pairings\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv class=\"fade-in\"\u003e\n      \u003cspan class=\"section-label\"\u003eCurated Pairings\u003c\/span\u003e\n      \u003ch2 class=\"section-title\"\u003eWorks that \u003cem\u003eResonate\u003c\/em\u003e\n\u003c\/h2\u003e\n      \u003cp style=\"font-size:0.82rem; color:var(--text-muted); max-width:500px; line-height:1.9;\"\u003e\n        Hushed Devotion pairs beautifully with pieces that share its reverence for stillness, emotional depth, and monochrome restraint.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"pairings-grid\" style=\"margin-top:3rem;\"\u003e\n      \u003cdiv class=\"pairing-card fade-in\"\u003e\n        \u003ch3 class=\"pairing-title\"\u003eVelvet Silence\u003c\/h3\u003e\n        \u003cp class=\"pairing-desc\"\u003eA companion study in atmospheric grayscale — deep tonal contrasts and softened edges that complement the quiet intimacy of Hushed Devotion.\u003c\/p\u003e\n        \u003cspan class=\"pairing-arrow\"\u003eExplore →\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"pairing-card fade-in fade-in-delay-1\"\u003e\n        \u003ch3 class=\"pairing-title\"\u003eStill Water Composition\u003c\/h3\u003e\n        \u003cp class=\"pairing-desc\"\u003eMeditative and architectural — this piece shares the same restrained palette and emotional gravity, creating dialogue across a curated interior wall.\u003c\/p\u003e\n        \u003cspan class=\"pairing-arrow\"\u003eExplore →\u003c\/span\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- COLLECTION CTA --\u003e\n\n\u003csection id=\"collection-cta\"\u003e\n  \u003cdiv class=\"container fade-in\"\u003e\n    \u003cspan class=\"section-label\"\u003eThe Collection\u003c\/span\u003e\n    \u003ch2 class=\"section-title\"\u003eBlack \u0026amp; White \u003cem\u003eLuxury Collection\u003c\/em\u003e\n\u003c\/h2\u003e\n    \u003cp\u003eExplore the full collection of monochrome works curated for collectors who value restraint, emotional depth, and timeless elegance.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\" class=\"btn-primary\" target=\"_blank\" rel=\"noopener\"\u003eExplore the Collection\u003c\/a\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- INVESTMENT --\u003e\n\n\u003csection id=\"investment\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    \u003cdiv class=\"investment-grid\"\u003e\n      \u003cdiv class=\"investment-left fade-in\"\u003e\n        \u003cspan class=\"section-label\"\u003eFor the Discerning Collector\u003c\/span\u003e\n        \u003ch2 class=\"section-title\"\u003eWhere It \u003cem\u003eBelongs\u003c\/em\u003e\n\u003c\/h2\u003e\n        \u003cp\u003eHushed Devotion is positioned for spaces that honor emotional resonance over spectacle. Its monochrome restraint and sculptural depth make it equally at home in private residences and world-class hospitality environments.\u003c\/p\u003e\n        \u003cul class=\"spaces-list\"\u003e\n          \u003cli\u003ePrivate bedroom suites and master sanctuaries\u003c\/li\u003e\n          \u003cli\u003eBoutique hotel rooms and curated suites\u003c\/li\u003e\n          \u003cli\u003eLuxury residential galleries and contemplative spaces\u003c\/li\u003e\n          \u003cli\u003eDesigner showrooms and refined lounges\u003c\/li\u003e\n          \u003cli\u003ePenthouse living and collector apartments\u003c\/li\u003e\n        \u003c\/ul\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"investment-right fade-in fade-in-delay-1\"\u003e\n        \u003ch3 class=\"section-title\"\u003eAcquire \u003cem\u003eHushed Devotion\u003c\/em\u003e\n\u003c\/h3\u003e\n        \u003cp\u003eEach print is hand-numbered and accompanied by full collector documentation. Pricing reflects edition positioning, archival quality, and long-term investment value.\u003c\/p\u003e\n        \u003cspan class=\"price-range\"\u003e$2,685 — $17,000\u003c\/span\u003e\n        \u003cspan class=\"price-note\"\u003ePricing varies by edition number and print size\u003c\/span\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"btn-primary\" style=\"display:block; text-align:center;\"\u003eRequest Private Inquiry\u003c\/a\u003e\n        \u003cp style=\"font-size:0.7rem; color:var(--text-dim); margin-top:1.2rem; text-align:center; line-height:1.7;\"\u003eAll acquisitions include Certificate of Authenticity\u003cbr\u003eand collector provenance documentation.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- BRAND STRIP --\u003e\n\n\u003cdiv id=\"brand-strip\"\u003e\n  \u003cdiv class=\"brand-strip-inner\"\u003e\n    \u003cspan class=\"brand-label\"\u003ePlaced in properties by\u003c\/span\u003e\n    \u003cspan class=\"brand-name\"\u003eAman\u003c\/span\u003e\n    \u003cspan class=\"brand-name\"\u003eFour Seasons\u003c\/span\u003e\n    \u003cspan class=\"brand-name\"\u003eSt. Regis\u003c\/span\u003e\n    \u003cspan class=\"brand-name\"\u003eRitz-Carlton Reserve\u003c\/span\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003c!-- FINAL CTA --\u003e\n\n\u003csection id=\"final-cta\"\u003e\n  \u003cdiv class=\"container fade-in\"\u003e\n    \u003cspan class=\"section-label\"\u003eBegin Your Acquisition\u003c\/span\u003e\n    \u003ch2 class=\"section-title\"\u003eNot spoken.\u003cbr\u003e\u003cem\u003eUnderstood.\u003c\/em\u003e\n\u003c\/h2\u003e\n    \u003cp\u003eHushed Devotion is available for private acquisition. Contact the studio to discuss sizing, edition number, and collector documentation.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"btn-primary\"\u003eContact the Studio\u003c\/a\u003e\n  \u003c\/div\u003e\n\u003c\/section\u003e\n\n\u003c!-- FOOTER --\u003e\n\n\u003cfooter\u003e\n  \u003cdiv class=\"footer-grid\"\u003e\n    \u003cdiv class=\"footer-brand\"\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKasian \u003cspan\u003eArt\u003c\/span\u003e Studio\u003c\/a\u003e\n      \u003cp\u003eMuseum-grade limited edition prints for luxury residences, boutique hotels, and fine art collectors. Moody. Elegant. Timeless.\u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"footer-col\"\u003e\n      \u003ch4\u003eNavigate\u003c\/h4\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eStudio\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection\"\u003eB\u0026amp;W Collection\u003c\/a\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eInquire\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"footer-col\"\u003e\n      \u003ch4\u003eConnect\u003c\/h4\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003eInstagram\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003ePinterest\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.youtube.com\/@kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003eYouTube\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n  \u003cdiv class=\"footer-bottom\"\u003e\n    \u003cp\u003e© 2026 Kasian Art Studio, L.L.C. All rights reserved.\u003c\/p\u003e\n    \u003cdiv class=\"social-links\"\u003e\n      \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003eIG\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003ePIN\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.youtube.com\/@kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003eYT\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/footer\u003e\n\n\u003cscript\u003e\n\/\/ Scroll header\nconst header = document.getElementById('main-header');\nwindow.addEventListener('scroll', () =\u003e {\n  header.classList.toggle('scrolled', window.scrollY \u003e 80);\n});\n\n\/\/ Intersection observer for fade-in\nconst faders = document.querySelectorAll('.fade-in');\nconst observer = new IntersectionObserver((entries) =\u003e {\n  entries.forEach(e =\u003e {\n    if (e.isIntersecting) {\n      e.target.classList.add('visible');\n      observer.unobserve(e.target);\n    }\n  });\n}, { threshold: 0.12 });\nfaders.forEach(el =\u003e observer.observe(el));\n\n\/\/ Particles\nconst container = document.getElementById('particles');\nfor (let i = 0; i \u003c 35; i++) {\n  const p = document.createElement('div');\n  p.className = 'particle';\n  const size = Math.random() * 3 + 1;\n  p.style.cssText = `\n    width: ${size}px;\n    height: ${size}px;\n    left: ${Math.random() * 100}%;\n    --drift: ${(Math.random() - 0.5) * 80}px;\n    animation-duration: ${Math.random() * 12 + 10}s;\n    animation-delay: ${Math.random() * 15}s;\n    opacity: ${Math.random() * 0.4};\n  `;\n  container.appendChild(p);\n}\n\u003c\/script\u003e\n\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47502538965157,"sku":"3012389_16039","price":12294.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47502538997925,"sku":"3012389_16045","price":12294.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47502539030693,"sku":"3012389_15700","price":12294.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/1B5491C1-2AAA-44AD-9D9D-FEE107D13EDE.png?v=1771364208"},{"product_id":"broadway-no-1325","title":"Broadway No. 1325 — Limited Edition Fine Art Print","description":"\u003cdiv style=\"font-family:'Cormorant Garamond','Garamond','Georgia',serif;background:#0a0a0a;color:#e8e4dc;max-width:1200px;margin:0 auto;padding:40px 20px;width:100%;box-sizing:border-box;\"\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003cdiv style=\"text-align:center;padding:60px 20px 40px;border-bottom:1px solid #222;\"\u003e\n    \u003cp style=\"font-family:'Cormorant Garamond','Georgia',serif;font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#888;margin:0 0 20px;\"\u003eKasian Art Studio — Urban Architecture Series\u003c\/p\u003e\n    \u003ch1 style=\"font-family:'Cormorant Garamond','Georgia',serif;font-size:clamp(36px,6vw,72px);font-weight:300;letter-spacing:0.05em;color:#f0ede6;margin:0 0 16px;line-height:1.1;\"\u003eBroadway No. 1325\u003c\/h1\u003e\n    \u003cp style=\"font-size:13px;letter-spacing:0.3em;text-transform:uppercase;color:#888;margin:0 0 24px;\"\u003eLimited Edition of 50  |  Museum-Grade Archival Print\u003c\/p\u003e\n    \u003cp style=\"font-style:italic;font-size:clamp(16px,2.5vw,22px);color:#b0aa9e;margin:0;letter-spacing:0.02em;\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESCRIPTION --\u003e\n  \u003cdiv style=\"max-width:760px;margin:60px auto;text-align:center;\"\u003e\n    \u003cp style=\"font-size:clamp(15px,2vw,19px);line-height:1.85;color:#c8c4bc;letter-spacing:0.01em;margin:0;\"\u003eA cinematic study in stark contrast and urban architecture, \u003cem\u003eBroadway No. 1325\u003c\/em\u003e captures New York's most legendary corridor rendered in ink-sketched precision against a field of absolute black. The composition is vertigo-inducing — a diagonal blade of light cutting through shadow, with crosshatched towers dissolving into white beneath. Museum-grade archival print, limited to an edition of 50.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CTA BUTTONS --\u003e\n  \u003cdiv style=\"text-align:center;padding:0 20px 60px;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" style=\"display:inline-block;padding:16px 40px;border:1px solid #c9a227;color:#c9a227;font-family:'Cormorant Garamond','Georgia',serif;font-size:12px;letter-spacing:0.3em;text-transform:uppercase;text-decoration:none;margin:8px 12px;transition:all 0.3s;\"\u003eInquire Below\u003c\/a\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\" style=\"display:inline-block;padding:16px 40px;border:1px solid #444;color:#888;font-family:'Cormorant Garamond','Georgia',serif;font-size:12px;letter-spacing:0.3em;text-transform:uppercase;text-decoration:none;margin:8px 12px;\"\u003eVisit Kasian Art Studio\u003c\/a\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- YOUTUBE --\u003e\n  \u003cdiv style=\"padding:60px 20px;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cp style=\"text-align:center;font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 32px;\"\u003eStudio Presentation\u003c\/p\u003e\n    \u003cdiv style=\"position:relative;width:100%;padding-top:56.25%;max-width:900px;margin:0 auto;\"\u003e\n      \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/l63kkpcHTg8\" title=\"Broadway No. 1325 | Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer;autoplay;clipboard-write;encrypted-media;gyroscope;picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;border:none;\"\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESCRIPTION --\u003e\n  \u003cdiv style=\"max-width:800px;margin:0 auto;padding:60px 20px;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cp style=\"font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 36px;text-align:center;\"\u003eAbout the Work\u003c\/p\u003e\n    \u003cp style=\"font-size:clamp(14px,1.8vw,17px);line-height:1.95;color:#b8b4ac;margin:0 0 28px;\"\u003e\u003cem\u003eBroadway No. 1325\u003c\/em\u003e is not a street scene. It is a psychological portrait of a city — its weight, its permanence, its indifference to those who pass beneath it. The dominant black field swallows the upper canvas entirely, broken only by the rigid geometry of a fire escape staircase rendered in precise architectural line. Below, the street sign — 1329–1325 Broadway — anchors the composition in both place and time, its bold lettering rendered with the clarity of a museum placard, commanding attention without apology.\u003c\/p\u003e\n    \u003cp style=\"font-size:clamp(14px,1.8vw,17px);line-height:1.95;color:#b8b4ac;margin:0 0 28px;\"\u003eThe lower half of the work dissolves into an extraordinary architectural sketch: gridded glass towers, steel scaffolding, the ghost of Midtown's skyline reduced to pure structural line. The technique is deliberate — part fine art illustration, part architectural rendering, part photographic memory. What the eye registers as absence is, in fact, presence: the negative space is the city breathing.\u003c\/p\u003e\n    \u003cp style=\"font-size:clamp(14px,1.8vw,17px);line-height:1.95;color:#b8b4ac;margin:0;\"\u003eThis piece belongs in spaces where architecture is the art. Where the walls speak before the furniture does. It commands scale — hung large in a hotel corridor or penthouse foyer, it transforms the room into a statement about urban identity, collected restraint, and the quiet power of black and white.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CINEMATIC BACKSTORY --\u003e\n  \u003cdiv style=\"background:#0d0d0d;padding:60px 20px;border-top:1px solid #1a1a1a;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cdiv style=\"max-width:720px;margin:0 auto;text-align:center;\"\u003e\n      \u003cp style=\"font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 40px;\"\u003eThe Story\u003c\/p\u003e\n      \u003cp style=\"font-style:italic;font-size:clamp(16px,2.2vw,24px);line-height:1.7;color:#c9a227;margin:0 0 40px;font-weight:300;\"\u003e\"There is a particular hour in New York when the city stops performing and simply exists.\"\u003c\/p\u003e\n      \u003cp style=\"font-size:clamp(14px,1.6vw,16px);line-height:1.95;color:#888;margin:0 0 24px;\"\u003eThe composition began with shadow. Not as an absence of light, but as a material in itself — dense, absolute, architectural. The upper register of the canvas is surrendered entirely to black, interrupted only by the skeletal geometry of a fire escape, rendered with the precision of an engineer's hand.\u003c\/p\u003e\n      \u003cp style=\"font-size:clamp(14px,1.6vw,16px);line-height:1.95;color:#888;margin:0;\"\u003eBeneath the dominant field, the city reasserts itself in pure structural line. Glass towers dissolve into crosshatched grids. The Broadway street sign anchors the work in specific, unambiguous geography. This is not an impression of New York. It is an argument about it.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES GRID --\u003e\n  \u003cdiv style=\"padding:60px 20px;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cp style=\"text-align:center;font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 48px;\"\u003eEdition Specifications\u003c\/p\u003e\n    \u003cdiv style=\"display:flex;flex-wrap:wrap;gap:2px;max-width:1100px;margin:0 auto;\"\u003e\n      \u003cdiv style=\"flex:1;min-width:220px;padding:36px 28px;background:#0f0f0f;border:1px solid #1a1a1a;text-align:center;\"\u003e\n        \u003cp style=\"font-size:11px;letter-spacing:0.3em;text-transform:uppercase;color:#c9a227;margin:0 0 14px;\"\u003eMedium\u003c\/p\u003e\n        \u003cp style=\"font-size:clamp(14px,1.6vw,16px);color:#c8c4bc;line-height:1.6;margin:0;\"\u003eFine Art Archival Print on Museum-Grade Substrate\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv style=\"flex:1;min-width:220px;padding:36px 28px;background:#0f0f0f;border:1px solid #1a1a1a;text-align:center;\"\u003e\n        \u003cp style=\"font-size:11px;letter-spacing:0.3em;text-transform:uppercase;color:#c9a227;margin:0 0 14px;\"\u003eEdition\u003c\/p\u003e\n        \u003cp style=\"font-size:clamp(14px,1.6vw,16px);color:#c8c4bc;line-height:1.6;margin:0;\"\u003eStrictly Limited to 50 Impressions — No Reprint\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv style=\"flex:1;min-width:220px;padding:36px 28px;background:#0f0f0f;border:1px solid #1a1a1a;text-align:center;\"\u003e\n        \u003cp style=\"font-size:11px;letter-spacing:0.3em;text-transform:uppercase;color:#c9a227;margin:0 0 14px;\"\u003eInks\u003c\/p\u003e\n        \u003cp style=\"font-size:clamp(14px,1.6vw,16px);color:#c8c4bc;line-height:1.6;margin:0;\"\u003ePigment-Based Archival Inks — 100-Year Rated\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- EDITION STATS --\u003e\n  \u003cdiv style=\"padding:60px 20px;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cdiv style=\"display:flex;flex-wrap:wrap;gap:0;max-width:900px;margin:0 auto;border:1px solid #1a1a1a;\"\u003e\n      \u003cdiv style=\"flex:1;min-width:160px;padding:40px 20px;text-align:center;border-right:1px solid #1a1a1a;\"\u003e\n        \u003cp style=\"font-size:clamp(28px,5vw,48px);font-weight:300;color:#f0ede6;margin:0 0 8px;letter-spacing:-0.02em;\"\u003e50\u003c\/p\u003e\n        \u003cp style=\"font-size:10px;letter-spacing:0.3em;text-transform:uppercase;color:#666;margin:0;\"\u003eTotal Edition\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv style=\"flex:1;min-width:160px;padding:40px 20px;text-align:center;border-right:1px solid #1a1a1a;\"\u003e\n        \u003cp style=\"font-size:clamp(28px,5vw,48px);font-weight:300;color:#c9a227;margin:0 0 8px;letter-spacing:-0.02em;\"\u003e100+\u003c\/p\u003e\n        \u003cp style=\"font-size:10px;letter-spacing:0.3em;text-transform:uppercase;color:#666;margin:0;\"\u003eYear Archival Rating\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv style=\"flex:1;min-width:160px;padding:40px 20px;text-align:center;border-right:1px solid #1a1a1a;\"\u003e\n        \u003cp style=\"font-size:clamp(28px,5vw,48px);font-weight:300;color:#f0ede6;margin:0 0 8px;letter-spacing:-0.02em;\"\u003e1\u003c\/p\u003e\n        \u003cp style=\"font-size:10px;letter-spacing:0.3em;text-transform:uppercase;color:#666;margin:0;\"\u003ePrint Run Only\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv style=\"flex:1;min-width:160px;padding:40px 20px;text-align:center;\"\u003e\n        \u003cp style=\"font-size:clamp(28px,5vw,48px);font-weight:300;color:#f0ede6;margin:0 0 8px;letter-spacing:-0.02em;\"\u003e2026\u003c\/p\u003e\n        \u003cp style=\"font-size:10px;letter-spacing:0.3em;text-transform:uppercase;color:#666;margin:0;\"\u003eRelease Year\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CURATED PAIRINGS --\u003e\n  \u003cdiv style=\"max-width:800px;margin:0 auto;padding:60px 20px;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cp style=\"text-align:center;font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 40px;\"\u003eCurated Pairings\u003c\/p\u003e\n    \u003cp style=\"font-size:clamp(14px,1.8vw,17px);line-height:1.95;color:#b8b4ac;text-align:center;margin:0;\"\u003e\u003cem\u003eBroadway No. 1325\u003c\/em\u003e pairs with shadowed figure works, nocturnal cityscape prints, and monochromatic abstract architectural pieces that carry the same editorial restraint. In interior design contexts, it complements polished concrete, blackened steel furniture, marble millwork, and spaces defined by dramatic vertical proportions.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- INVESTMENT POSITIONING --\u003e\n  \u003cdiv style=\"background:#0d0d0d;padding:60px 20px;border-top:1px solid #1a1a1a;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cp style=\"text-align:center;font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 48px;\"\u003eDesigned For\u003c\/p\u003e\n    \u003cdiv style=\"display:flex;flex-wrap:wrap;gap:12px;max-width:900px;margin:0 auto;justify-content:center;\"\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003eLuxury Residences\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003eBoutique Hotels\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003ePenthouse Foyers\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003eExecutive Offices\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003ePrivate Collections\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003eSuperyacht Interiors\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003eMuseum Collections\u003c\/span\u003e\n      \u003cspan style=\"padding:10px 24px;border:1px solid #2a2a2a;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#888;\"\u003eArchitectural Spaces\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- HOTEL BRAND STRIP --\u003e\n  \u003cdiv style=\"padding:50px 20px;border-bottom:1px solid #1a1a1a;text-align:center;\"\u003e\n    \u003cp style=\"font-size:10px;letter-spacing:0.4em;text-transform:uppercase;color:#555;margin:0 0 24px;\"\u003eCalibrated for the World's Most Discerning Properties\u003c\/p\u003e\n    \u003cp style=\"font-size:12px;letter-spacing:0.3em;text-transform:uppercase;color:#777;margin:0;line-height:2.2;\"\u003eAman  •  Four Seasons  •  St. Regis  •  Ritz-Carlton Reserve  •  Rosewood  •  EDITION\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FINAL CTA --\u003e\n  \u003cdiv style=\"padding:80px 20px;text-align:center;border-bottom:1px solid #1a1a1a;\"\u003e\n    \u003cp style=\"font-size:11px;letter-spacing:0.35em;text-transform:uppercase;color:#666;margin:0 0 24px;\"\u003eAcquire This Work\u003c\/p\u003e\n    \u003cp style=\"font-style:italic;font-size:clamp(18px,3vw,30px);color:#c9a227;margin:0 0 16px;font-weight:300;\"\u003eEdition __ of 50\u003c\/p\u003e\n    \u003cp style=\"font-size:clamp(14px,1.8vw,18px);line-height:1.8;color:#888;max-width:560px;margin:0 auto 40px;\"\u003eOnce the edition is closed, this work does not return to market. Inquire directly for acquisition, institutional pricing, and provenance documentation.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" style=\"display:inline-block;padding:18px 52px;background:#c9a227;color:#0a0a0a;font-family:'Cormorant Garamond','Georgia',serif;font-size:12px;letter-spacing:0.3em;text-transform:uppercase;text-decoration:none;font-weight:600;margin:8px 12px;\"\u003eInquire Below\u003c\/a\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\" target=\"_blank\" style=\"display:inline-block;padding:18px 52px;border:1px solid #444;color:#888;font-family:'Cormorant Garamond','Georgia',serif;font-size:12px;letter-spacing:0.3em;text-transform:uppercase;text-decoration:none;margin:8px 12px;\"\u003eVisit Kasian Art Studio\u003c\/a\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FOOTER CONTACT --\u003e\n  \u003cdiv style=\"padding:48px 20px;text-align:center;\"\u003e\n    \u003cp style=\"font-size:10px;letter-spacing:0.35em;text-transform:uppercase;color:#555;margin:0 0 12px;\"\u003eKasian Art Studio\u003c\/p\u003e\n    \u003cp style=\"font-size:13px;color:#666;margin:0 0 6px;letter-spacing:0.05em;\"\u003ekristina@kasianartstudio.com\u003c\/p\u003e\n    \u003cp style=\"font-size:11px;color:#555;margin:0;letter-spacing:0.05em;\"\u003ekasianartstudio.com   |   @kasianartstudio\u003c\/p\u003e\n    \u003cp style=\"font-size:10px;letter-spacing:0.2em;text-transform:uppercase;color:#3a3a3a;margin:28px 0 0;\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47661589692581,"sku":"3204505_16039","price":16114.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47661589725349,"sku":"3204505_16045","price":16114.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47661589758117,"sku":"3204505_15700","price":16114.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/Nano_Banana_2_-_make_a_mockup_of_this_exact_artwork_in_a_Billionaire_Penthouse___Manhattan_Skyline__2_2c24f611-8001-435f-beb5-a2aaa7a783a0.png?v=1774665776"},{"product_id":"trouble-unseen","title":"Trouble, Unseen","description":"\u003c!-- KASIAN ART STUDIO — Trouble, Unseen — Shopify Product Description --\u003e\n\u003c!-- Paste this entire block into Shopify \u003e Products \u003e Description \u003e Show HTML (\u003c\u003e) --\u003e\n\n\u003cstyle\u003e\n  .kas-wrap { font-family: Georgia, 'Times New Roman', serif; color: #1a1a1a; max-width: 100%; line-height: 1.7; }\n  .kas-wrap * { box-sizing: border-box; }\n\n  \/* HERO BANNER *\/\n  .kas-hero {\n    background: #0d0d0d;\n    padding: 60px 40px;\n    text-align: center;\n    margin-bottom: 0;\n    border-bottom: 1px solid #2a2a2a;\n  }\n  .kas-edition-tag {\n    display: inline-block;\n    font-size: 11px;\n    letter-spacing: 0.3em;\n    text-transform: uppercase;\n    color: #8a837c;\n    border: 1px solid #2e2e2e;\n    padding: 6px 18px;\n    margin-bottom: 24px;\n  }\n  .kas-hero h1 {\n    font-family: Georgia, serif;\n    font-size: clamp(2.4rem, 5vw, 3.8rem);\n    font-weight: 400;\n    color: #f0ece8;\n    margin: 0 0 4px 0;\n    line-height: 1.05;\n    letter-spacing: -0.01em;\n  }\n  .kas-hero-sub {\n    font-family: Georgia, serif;\n    font-style: italic;\n    font-size: clamp(1rem, 2vw, 1.35rem);\n    color: #8a837c;\n    margin: 0 0 20px 0;\n  }\n  .kas-tagline {\n    font-size: 11px;\n    letter-spacing: 0.28em;\n    text-transform: uppercase;\n    color: #4a4642;\n    margin: 0;\n  }\n  .kas-tagline span { color: #6a6460; margin: 0 6px; }\n\n  \/* DIVIDER *\/\n  .kas-divider {\n    display: flex;\n    align-items: center;\n    gap: 14px;\n    margin: 36px 0;\n  }\n  .kas-divider-line { flex: 1; height: 1px; background: #e8e4e0; }\n  .kas-divider-dot { width: 4px; height: 4px; background: #b8a896; border-radius: 50%; flex-shrink: 0; }\n\n  \/* SHORT DESCRIPTION *\/\n  .kas-short {\n    background: #faf9f8;\n    border-left: 3px solid #b8a896;\n    padding: 24px 28px;\n    margin-bottom: 0;\n  }\n  .kas-short p {\n    font-style: italic;\n    font-size: 1.05rem;\n    color: #3a3632;\n    margin: 0;\n    line-height: 1.75;\n  }\n\n  \/* SECTION LABELS *\/\n  .kas-label {\n    font-size: 10px;\n    letter-spacing: 0.32em;\n    text-transform: uppercase;\n    color: #b8a896;\n    display: flex;\n    align-items: center;\n    gap: 12px;\n    margin-bottom: 16px;\n  }\n  .kas-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: #b8a896; }\n\n  \/* DETAILS GRID *\/\n  .kas-details-grid {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 1px;\n    background: #e8e4e0;\n    border: 1px solid #e8e4e0;\n    margin: 0;\n  }\n  .kas-detail-cell {\n    background: #fff;\n    padding: 14px 18px;\n    display: flex;\n    flex-direction: column;\n    gap: 3px;\n  }\n  .kas-detail-label {\n    font-size: 10px;\n    letter-spacing: 0.22em;\n    text-transform: uppercase;\n    color: #aaa;\n  }\n  .kas-detail-value {\n    font-size: 0.9rem;\n    color: #2a2a2a;\n    font-style: italic;\n  }\n\n  \/* LONG DESCRIPTION *\/\n  .kas-body p {\n    font-size: 0.98rem;\n    line-height: 1.88;\n    color: #3a3632;\n    margin: 0 0 18px 0;\n  }\n  .kas-body p:last-child { margin-bottom: 0; }\n\n  \/* PULL QUOTE *\/\n  .kas-pull-quote {\n    border-left: 2px solid #b8a896;\n    padding: 6px 24px;\n    margin: 32px 0;\n  }\n  .kas-pull-quote p {\n    font-family: Georgia, serif;\n    font-style: italic;\n    font-size: 1.15rem;\n    color: #2a2a2a;\n    line-height: 1.55;\n    margin: 0;\n  }\n\n  \/* BACKSTORY *\/\n  .kas-backstory {\n    background: #0d0d0d;\n    padding: 44px 40px;\n  }\n  .kas-backstory .kas-label { color: #6a6460; }\n  .kas-backstory .kas-label::before { background: #6a6460; }\n  .kas-backstory h2 {\n    font-family: Georgia, serif;\n    font-size: 1.6rem;\n    font-weight: 400;\n    font-style: italic;\n    color: #e8e4e0;\n    margin: 0 0 24px 0;\n    line-height: 1.2;\n  }\n  .kas-backstory p {\n    font-size: 0.93rem;\n    line-height: 1.88;\n    color: #8a8480;\n    margin: 0 0 16px 0;\n  }\n  .kas-backstory p:last-child { margin-bottom: 0; }\n\n  \/* FEATURES ROW *\/\n  .kas-features {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 1px;\n    background: #e8e4e0;\n    border: 1px solid #e8e4e0;\n  }\n  .kas-feature {\n    background: #fff;\n    padding: 28px 22px;\n  }\n  .kas-feature-num {\n    display: block;\n    font-size: 1.6rem;\n    color: #ddd;\n    font-family: Georgia, serif;\n    line-height: 1;\n    margin-bottom: 10px;\n  }\n  .kas-feature h3 {\n    font-size: 10px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: #b8a896;\n    margin: 0 0 10px 0;\n    font-weight: 400;\n  }\n  .kas-feature p { font-size: 0.84rem; line-height: 1.7; color: #5a5652; margin: 0; }\n\n  \/* STATS STRIP *\/\n  .kas-stats {\n    display: grid;\n    grid-template-columns: repeat(4, 1fr);\n    gap: 1px;\n    background: #2a2a2a;\n  }\n  .kas-stat {\n    background: #0d0d0d;\n    padding: 32px 16px;\n    text-align: center;\n  }\n  .kas-stat-num {\n    display: block;\n    font-family: Georgia, serif;\n    font-size: 2.2rem;\n    color: #8a837c;\n    line-height: 1;\n    margin-bottom: 8px;\n  }\n  .kas-stat-label {\n    display: block;\n    font-size: 9px;\n    letter-spacing: 0.22em;\n    text-transform: uppercase;\n    color: #4a4642;\n    margin-bottom: 6px;\n  }\n  .kas-stat-desc { font-size: 0.72rem; font-style: italic; color: #6a6460; }\n\n  \/* PAIRINGS *\/\n  .kas-pairings-grid {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 1px;\n    background: #e8e4e0;\n    border: 1px solid #e8e4e0;\n  }\n  .kas-pairing {\n    background: #faf9f8;\n    padding: 28px 24px;\n    border-left: 2px solid transparent;\n  }\n  .kas-pairing h3 {\n    font-family: Georgia, serif;\n    font-size: 1.05rem;\n    font-weight: 400;\n    color: #2a2a2a;\n    margin: 0 0 8px 0;\n  }\n  .kas-pairing p { font-size: 0.84rem; line-height: 1.7; color: #6a6460; margin: 0 0 12px 0; }\n  .kas-pairing a {\n    font-size: 10px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: #b8a896;\n    text-decoration: none;\n  }\n\n  \/* SPACES LIST *\/\n  .kas-spaces { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }\n  .kas-spaces li {\n    background: #faf9f8;\n    padding: 13px 20px;\n    font-style: italic;\n    font-size: 0.9rem;\n    color: #5a5652;\n    border-left: 2px solid #e8e4e0;\n  }\n\n  \/* BRANDS STRIP *\/\n  .kas-brands {\n    background: #0d0d0d;\n    padding: 28px 40px;\n    text-align: center;\n  }\n  .kas-brands p {\n    font-size: 9px;\n    letter-spacing: 0.32em;\n    text-transform: uppercase;\n    color: #3a3632;\n    margin: 0 0 16px 0;\n  }\n  .kas-brands-row {\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    gap: 28px;\n    flex-wrap: wrap;\n  }\n  .kas-brands-row span {\n    font-family: Georgia, serif;\n    font-size: 0.78rem;\n    letter-spacing: 0.1em;\n    color: #4a4642;\n  }\n\n  \/* CTA BLOCK *\/\n  .kas-cta {\n    background: #0d0d0d;\n    padding: 48px 40px;\n    text-align: center;\n  }\n  .kas-cta h2 {\n    font-family: Georgia, serif;\n    font-size: 1.8rem;\n    font-weight: 400;\n    color: #f0ece8;\n    margin: 0 0 12px 0;\n  }\n  .kas-cta p { font-style: italic; font-size: 0.92rem; color: #6a6460; margin: 0 0 28px 0; }\n  .kas-cta a {\n    display: inline-block;\n    background: #b8a896;\n    color: #0d0d0d;\n    font-size: 10px;\n    letter-spacing: 0.22em;\n    text-transform: uppercase;\n    padding: 14px 36px;\n    text-decoration: none;\n    margin: 4px;\n  }\n  .kas-cta-ghost {\n    background: transparent !important;\n    color: #8a837c !important;\n    border: 1px solid #2a2a2a;\n  }\n\n  \/* SECTION SPACING *\/\n  .kas-section { padding: 44px 40px; }\n  .kas-section-light { padding: 44px 40px; background: #fff; }\n  .kas-section-dark { padding: 44px 40px; background: #0d0d0d; }\n  .kas-section-warm { padding: 44px 40px; background: #faf9f8; }\n\n  \/* RESPONSIVE — mobile *\/\n  @media (max-width: 600px) {\n    .kas-hero { padding: 40px 20px; }\n    .kas-section, .kas-section-light, .kas-section-dark, .kas-section-warm,\n    .kas-backstory, .kas-brands, .kas-cta { padding: 32px 20px; }\n    .kas-details-grid { grid-template-columns: 1fr; }\n    .kas-features { grid-template-columns: 1fr; }\n    .kas-stats { grid-template-columns: repeat(2, 1fr); }\n    .kas-pairings-grid { grid-template-columns: 1fr; }\n    .kas-brands-row { gap: 16px; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"kas-wrap\"\u003e\n\n  \u003c!-- HERO BANNER --\u003e\n  \u003cdiv class=\"kas-hero\"\u003e\n    \u003cdiv class=\"kas-edition-tag\"\u003eLimited Edition of 50\u003c\/div\u003e\n    \u003ch1\u003eTrouble,\u003c\/h1\u003e\n    \u003cp class=\"kas-hero-sub\"\u003eUnseen\u003c\/p\u003e\n    \u003cp class=\"kas-tagline\"\u003eMoody \u003cspan\u003e·\u003c\/span\u003e Elegant \u003cspan\u003e·\u003c\/span\u003e Timeless\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESCRIPTION --\u003e\n  \u003cdiv class=\"kas-short\"\u003e\n    \u003cp\u003eA portrait of provocation, anonymity, and controlled defiance. Trouble, Unseen channels the charged elegance of black-and-white editorial photography into a museum-grade statement piece for collectors, hospitality spaces, and interiors that favor tension over ornament.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- ARTWORK DETAILS --\u003e\n  \u003cdiv class=\"kas-section-light\"\u003e\n    \u003cdiv class=\"kas-label\"\u003eArtwork Details\u003c\/div\u003e\n    \u003cdiv class=\"kas-details-grid\"\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eTitle\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eTrouble, Unseen\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eEdition\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eLimited Edition of 50\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eMedium\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eMuseum-grade archival print\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003ePalette\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eBlack · Ivory · Graphite · Ash · Soft grey\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eFrame Suggestion\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eMatte black · Smoked walnut · Gloss black\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eYear\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003e2026\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eCertification\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eSigned Certificate of Authenticity included\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-detail-cell\"\u003e\n        \u003cspan class=\"kas-detail-label\"\u003eStudio\u003c\/span\u003e\n        \u003cspan class=\"kas-detail-value\"\u003eKasian Art Studio\u003c\/span\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- DIVIDER --\u003e\n  \u003cdiv class=\"kas-section-light\" style=\"padding-top:0; padding-bottom:0;\"\u003e\n    \u003cdiv class=\"kas-divider\"\u003e\n\u003cdiv class=\"kas-divider-line\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"kas-divider-dot\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"kas-divider-line\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESCRIPTION --\u003e\n  \u003cdiv class=\"kas-section-light\"\u003e\n    \u003cdiv class=\"kas-label\"\u003eThe Work\u003c\/div\u003e\n    \u003cdiv class=\"kas-body\"\u003e\n      \u003cp\u003eTrouble, Unseen is a study in mystery sharpened by restraint. A female figure emerges in monochrome, her gaze concealed beneath a stark band of black emblazoned with a single word: TROUBLE. A cigarette rests at the lips. A white garment cuts through shadow. The composition is immediate, graphic, and unapologetically cinematic.\u003c\/p\u003e\n\n      \u003cdiv class=\"kas-pull-quote\"\u003e\n        \u003cp\u003e\"This is not merely portraiture. It is persona rendered as icon.\"\u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cp\u003eWhat gives the work its power is not excess, but control. The obscured eyes withhold emotion while intensifying it. The grayscale palette strips the image to essence — skin, text, shadow, line. The result feels at once editorial and psychological, borrowing the language of fashion while transcending it.\u003c\/p\u003e\n      \u003cp\u003eThe work introduces a sophisticated edge to interiors that understand visual tension as a form of luxury. In a private dressing room, it becomes intimate and confrontational. In a penthouse lounge, it reads as polished rebellion. In a boutique hotel suite or gallery-inspired hospitality setting, it offers atmosphere, intrigue, and a memorable point of view.\u003c\/p\u003e\n      \u003cp\u003eTrouble, Unseen belongs in spaces that appreciate the magnetic balance between elegance and danger. It is a collector piece defined by contrast, attitude, and the enduring seduction of what remains partially hidden.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CINEMATIC BACKSTORY --\u003e\n  \u003cdiv class=\"kas-backstory\"\u003e\n    \u003cdiv class=\"kas-label\"\u003eCinematic Origin\u003c\/div\u003e\n    \u003ch2\u003eShe does not ask to be understood.\u003c\/h2\u003e\n    \u003cp\u003eTrouble, Unseen was conceived as an icon of withheld power — an image where concealment becomes the source of command. The obscured eyes remove certainty. The cigarette suggests ritual rather than vice. The single word across the face transforms the portrait into a declaration, though one filtered through irony, style, and silence.\u003c\/p\u003e\n    \u003cp\u003eThis is a work rooted in editorial tension: the kind of beauty that resists softness, the kind of glamour that understands danger as part of its architecture. The monochrome treatment strips away distraction and leaves only essentials — gesture, shadow, surface, suggestion.\u003c\/p\u003e\n    \u003cp\u003eCreated for collector spaces and design-led interiors, the piece functions as both portrait and atmosphere. It is less about rebellion in the literal sense than about the elegance of self-possession. A private mythology rendered in black, white, and restraint.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES --\u003e\n  \u003cdiv class=\"kas-section-light\"\u003e\n    \u003cdiv class=\"kas-label\"\u003eMuseum-Grade Standards\u003c\/div\u003e\n    \u003cdiv class=\"kas-features\"\u003e\n      \u003cdiv class=\"kas-feature\"\u003e\n        \u003cspan class=\"kas-feature-num\"\u003eI.\u003c\/span\u003e\n        \u003ch3\u003eStrictly Limited\u003c\/h3\u003e\n        \u003cp\u003eOnly 50 editions will ever exist. Each numbered, certified, and archived. Once the edition sells, the work is permanently closed. Collectors acquire not just art, but scarcity itself.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-feature\"\u003e\n        \u003cspan class=\"kas-feature-num\"\u003eII.\u003c\/span\u003e\n        \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n        \u003cp\u003eProduced on museum-grade archival materials with professional fine art printing standards, ensuring lasting tonal integrity, contrast depth, and collector-grade presentation across generations.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-feature\"\u003e\n        \u003cspan class=\"kas-feature-num\"\u003eIII.\u003c\/span\u003e\n        \u003ch3\u003eCollector Provenance\u003c\/h3\u003e\n        \u003cp\u003eEach edition ships with a signed Certificate of Authenticity from Kasian Art Studio, registered in the studio archive — an unbroken line of provenance from creation to collection.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- STATS --\u003e\n  \u003cdiv class=\"kas-stats\"\u003e\n    \u003cdiv class=\"kas-stat\"\u003e\n      \u003cspan class=\"kas-stat-num\"\u003e50\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-label\"\u003eTotal Editions\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-desc\"\u003eStrictly finite release\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kas-stat\"\u003e\n      \u003cspan class=\"kas-stat-num\"\u003e1\/1\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-label\"\u003eYour Number\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-desc\"\u003eIndividually numbered \u0026amp; certified\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kas-stat\"\u003e\n      \u003cspan class=\"kas-stat-num\"\u003e2026\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-label\"\u003eRelease Year\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-desc\"\u003eCurrent studio archive\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kas-stat\"\u003e\n      \u003cspan class=\"kas-stat-num\"\u003e∞\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-label\"\u003ePresence\u003c\/span\u003e\n      \u003cspan class=\"kas-stat-desc\"\u003eAlters the room it enters\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003cdiv class=\"kas-section-warm\"\u003e\n    \u003cdiv class=\"kas-label\"\u003eCurated Pairings\u003c\/div\u003e\n    \u003cdiv class=\"kas-pairings-grid\"\u003e\n      \u003cdiv class=\"kas-pairing\"\u003e\n        \u003ch3\u003eThe Unspoken Portrait\u003c\/h3\u003e\n        \u003cp\u003eA companion monochrome study in feminine restraint — eyes revealed, expression withheld. Together they form a diptych of controlled revelation for collector walls.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kas-pairing\"\u003e\n        \u003ch3\u003eNoir Interior — Study I\u003c\/h3\u003e\n        \u003cp\u003eAn atmospheric abstraction in graphite and ivory that extends the chromatic world of Trouble, Unseen into pure spatial mood — ideal for walls where portraiture and abstraction share deliberate tension.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- IDEAL SPACES --\u003e\n  \u003cdiv class=\"kas-section-light\"\u003e\n    \u003cdiv class=\"kas-label\"\u003eIdeal Environments\u003c\/div\u003e\n    \u003cul class=\"kas-spaces\"\u003e\n      \u003cli\u003ePrivate Dressing Rooms \u0026amp; Boudoirs\u003c\/li\u003e\n      \u003cli\u003ePenthouse Lounges \u0026amp; Living Spaces\u003c\/li\u003e\n      \u003cli\u003eBoutique Hotel Suites \u0026amp; Corridors\u003c\/li\u003e\n      \u003cli\u003ePowder Rooms \u0026amp; Intimate Galleries\u003c\/li\u003e\n      \u003cli\u003ePrivate Studies \u0026amp; Executive Offices\u003c\/li\u003e\n      \u003cli\u003eGallery Walls \u0026amp; Collector Residences\u003c\/li\u003e\n      \u003cli\u003eLuxury Spa \u0026amp; Hospitality Environments\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRS WELL WITH --\u003e\n  \u003cdiv class=\"kas-section-warm\"\u003e\n    \u003cdiv class=\"kas-label\"\u003ePairs Well With\u003c\/div\u003e\n    \u003cdiv class=\"kas-body\"\u003e\n      \u003cp\u003eMatte black, gloss black, or smoked walnut frames. Interiors in charcoal, ivory, pewter, and warm stone. Sculptural furniture, soft boucle, blackened steel, and lacquer finishes. Companion works with monochrome portraiture, text-based art, or cinematic abstraction. Boutique hotel suites, powder rooms, dressing rooms, lounges, and private studies.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BRAND STRIP --\u003e\n  \u003cdiv class=\"kas-brands\"\u003e\n    \u003cp\u003ePositioned for distinguished hospitality collections\u003c\/p\u003e\n    \u003cdiv class=\"kas-brands-row\"\u003e\n      \u003cspan\u003eAman\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eFour Seasons\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eSt. Regis\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRosewood\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FINAL CTA --\u003e\n  \u003cdiv class=\"kas-cta\"\u003e\n    \u003ch2\u003eAcquire Your Edition\u003c\/h2\u003e\n    \u003cp\u003e50 editions. Each numbered, certified, and delivered with full provenance documentation.\u003c\/p\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Trouble,%20Unseen\"\u003eInquire to Acquire\u003c\/a\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"kas-cta-ghost\"\u003eBrowse All Works\u003c\/a\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003c!-- END KASIAN ART STUDIO — Trouble, Unseen --\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47765447770277,"sku":"1299560_16039","price":16944.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47765447803045,"sku":"1299560_16045","price":16944.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47765447835813,"sku":"1299560_15700","price":16944.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_Apr_21_2026_05_52_19_PM.png?v=1777329261"},{"product_id":"abandoned-line-i","title":"Abandoned Line I","description":"\u003c!-- KASIAN ART STUDIO — Abandoned Line I — Shopify Product Description --\u003e\n\u003c!-- Paste into Shopify \u003e Products \u003e Description \u003e Show HTML (\u003c\u003e) --\u003e\n\n\u003cstyle\u003e\n  .kal-wrap { font-family: Georgia, 'Times New Roman', serif; color: #1a1a1a; max-width: 100%; line-height: 1.7; }\n  .kal-wrap * { box-sizing: border-box; margin: 0; padding: 0; }\n\n  \/* HERO *\/\n  .kal-hero {\n    background: #0c0c0c;\n    padding: 56px 40px;\n    text-align: center;\n    border-bottom: 1px solid #222;\n  }\n  .kal-edition-tag {\n    display: inline-block;\n    font-size: 10px;\n    letter-spacing: 0.32em;\n    text-transform: uppercase;\n    color: #6a6460;\n    border: 1px solid #2a2a2a;\n    padding: 6px 18px;\n    margin-bottom: 22px;\n  }\n  .kal-hero h1 {\n    font-family: Georgia, serif;\n    font-size: clamp(2.2rem, 5vw, 3.6rem);\n    font-weight: 400;\n    color: #ede9e4;\n    line-height: 1.05;\n    letter-spacing: 0.02em;\n    margin-bottom: 8px;\n  }\n  .kal-hero-sub {\n    font-family: Georgia, serif;\n    font-style: italic;\n    font-size: clamp(0.85rem, 1.8vw, 1.1rem);\n    color: #6a6460;\n    margin-bottom: 20px;\n  }\n  .kal-tagline {\n    font-size: 10px;\n    letter-spacing: 0.28em;\n    text-transform: uppercase;\n    color: #3a3632;\n  }\n  .kal-tagline span { color: #5a5652; margin: 0 6px; }\n\n  \/* SHORT DESC *\/\n  .kal-short {\n    background: #f8f7f6;\n    border-left: 3px solid #9a9088;\n    padding: 24px 28px;\n  }\n  .kal-short p {\n    font-style: italic;\n    font-size: 1.02rem;\n    color: #3a3632;\n    line-height: 1.78;\n  }\n\n  \/* LABEL *\/\n  .kal-label {\n    font-size: 10px;\n    letter-spacing: 0.32em;\n    text-transform: uppercase;\n    color: #9a9088;\n    display: flex;\n    align-items: center;\n    gap: 12px;\n    margin-bottom: 18px;\n  }\n  .kal-label::before { content: ''; display: inline-block; width: 22px; height: 1px; background: #9a9088; }\n\n  \/* DIVIDER *\/\n  .kal-divider {\n    display: flex;\n    align-items: center;\n    gap: 12px;\n    padding: 8px 0 32px;\n  }\n  .kal-divider-line { flex: 1; height: 1px; background: #e4e0dc; }\n  .kal-divider-dot { width: 4px; height: 4px; background: #9a9088; border-radius: 50%; flex-shrink: 0; }\n\n  \/* SECTIONS *\/\n  .kal-section { padding: 40px 40px; background: #fff; }\n  .kal-section-warm { padding: 40px 40px; background: #f8f7f6; }\n  .kal-section-dark { padding: 40px 40px; background: #0c0c0c; }\n\n  \/* DETAILS GRID *\/\n  .kal-details {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 1px;\n    background: #e4e0dc;\n    border: 1px solid #e4e0dc;\n  }\n  .kal-detail-cell {\n    background: #fff;\n    padding: 14px 18px;\n    display: flex;\n    flex-direction: column;\n    gap: 3px;\n  }\n  .kal-detail-lbl {\n    font-size: 9px;\n    letter-spacing: 0.22em;\n    text-transform: uppercase;\n    color: #aaa8a4;\n  }\n  .kal-detail-val {\n    font-size: 0.88rem;\n    color: #2a2a28;\n    font-style: italic;\n  }\n\n  \/* BODY TEXT *\/\n  .kal-body p {\n    font-size: 0.96rem;\n    line-height: 1.88;\n    color: #3a3832;\n    margin-bottom: 18px;\n  }\n  .kal-body p:last-child { margin-bottom: 0; }\n\n  \/* PULL QUOTE *\/\n  .kal-quote {\n    border-left: 2px solid #9a9088;\n    padding: 4px 22px;\n    margin: 28px 0;\n  }\n  .kal-quote p {\n    font-style: italic;\n    font-size: 1.12rem;\n    color: #2a2a28;\n    line-height: 1.55;\n    margin: 0;\n  }\n\n  \/* BACKSTORY DARK *\/\n  .kal-backstory { padding: 44px 40px; background: #0c0c0c; }\n  .kal-backstory .kal-label { color: #5a5652; }\n  .kal-backstory .kal-label::before { background: #5a5652; }\n  .kal-backstory h2 {\n    font-family: Georgia, serif;\n    font-size: clamp(1.4rem, 3vw, 1.9rem);\n    font-weight: 400;\n    font-style: italic;\n    color: #dedad6;\n    margin-bottom: 22px;\n    line-height: 1.25;\n  }\n  .kal-backstory p {\n    font-size: 0.92rem;\n    line-height: 1.9;\n    color: #7a7672;\n    margin-bottom: 16px;\n  }\n  .kal-backstory p:last-child { margin-bottom: 0; }\n\n  \/* FEATURES *\/\n  .kal-features {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 1px;\n    background: #e4e0dc;\n    border: 1px solid #e4e0dc;\n  }\n  .kal-feature { background: #fff; padding: 28px 22px; }\n  .kal-feature-num {\n    display: block;\n    font-family: Georgia, serif;\n    font-size: 1.8rem;\n    color: #e0dcd8;\n    line-height: 1;\n    margin-bottom: 12px;\n  }\n  .kal-feature h3 {\n    font-size: 9px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: #9a9088;\n    margin-bottom: 10px;\n    font-weight: 400;\n  }\n  .kal-feature p { font-size: 0.83rem; line-height: 1.72; color: #5a5652; }\n\n  \/* STATS *\/\n  .kal-stats {\n    display: grid;\n    grid-template-columns: repeat(4, 1fr);\n    gap: 1px;\n    background: #222;\n  }\n  .kal-stat { background: #0c0c0c; padding: 32px 16px; text-align: center; }\n  .kal-stat-num {\n    display: block;\n    font-family: Georgia, serif;\n    font-size: 2.1rem;\n    color: #7a7470;\n    line-height: 1;\n    margin-bottom: 8px;\n  }\n  .kal-stat-lbl {\n    display: block;\n    font-size: 9px;\n    letter-spacing: 0.22em;\n    text-transform: uppercase;\n    color: #3a3632;\n    margin-bottom: 5px;\n  }\n  .kal-stat-desc { font-size: 0.7rem; font-style: italic; color: #5a5652; }\n\n  \/* PAIRINGS *\/\n  .kal-pairings {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 1px;\n    background: #e4e0dc;\n    border: 1px solid #e4e0dc;\n  }\n  .kal-pairing { background: #f8f7f6; padding: 28px 24px; }\n  .kal-pairing h3 {\n    font-family: Georgia, serif;\n    font-size: 1rem;\n    font-weight: 400;\n    color: #2a2a28;\n    margin-bottom: 8px;\n  }\n  .kal-pairing p { font-size: 0.83rem; line-height: 1.7; color: #6a6660; margin-bottom: 12px; }\n  .kal-pairing a {\n    font-size: 9px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: #9a9088;\n    text-decoration: none;\n  }\n\n  \/* SPACES *\/\n  .kal-spaces { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }\n  .kal-spaces li {\n    background: #f8f7f6;\n    padding: 13px 20px;\n    font-style: italic;\n    font-size: 0.88rem;\n    color: #5a5652;\n    border-left: 2px solid #e4e0dc;\n  }\n\n  \/* PAIRS WELL *\/\n  .kal-pairs-text {\n    font-size: 0.93rem;\n    line-height: 1.82;\n    color: #5a5652;\n    font-style: italic;\n  }\n\n  \/* BRANDS *\/\n  .kal-brands { padding: 28px 40px; background: #0c0c0c; text-align: center; }\n  .kal-brands-label {\n    font-size: 9px;\n    letter-spacing: 0.32em;\n    text-transform: uppercase;\n    color: #3a3632;\n    display: block;\n    margin-bottom: 16px;\n  }\n  .kal-brands-row {\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    gap: 24px;\n    flex-wrap: wrap;\n  }\n  .kal-brands-row span {\n    font-family: Georgia, serif;\n    font-size: 0.75rem;\n    letter-spacing: 0.1em;\n    color: #3a3632;\n  }\n\n  \/* CTA *\/\n  .kal-cta { background: #0c0c0c; padding: 48px 40px; text-align: center; }\n  .kal-cta h2 {\n    font-family: Georgia, serif;\n    font-size: clamp(1.5rem, 3vw, 2rem);\n    font-weight: 400;\n    color: #ede9e4;\n    margin-bottom: 10px;\n  }\n  .kal-cta p { font-style: italic; font-size: 0.9rem; color: #5a5652; margin-bottom: 26px; }\n  .kal-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }\n  .kal-btn {\n    display: inline-block;\n    background: #9a9088;\n    color: #0c0c0c;\n    font-family: Georgia, serif;\n    font-size: 10px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    padding: 13px 34px;\n    text-decoration: none;\n  }\n  .kal-btn-ghost {\n    display: inline-block;\n    background: transparent;\n    color: #6a6460;\n    font-family: Georgia, serif;\n    font-size: 10px;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    padding: 13px 34px;\n    text-decoration: none;\n    border: 1px solid #2a2a2a;\n  }\n\n  \/* RESPONSIVE *\/\n  @media (max-width: 600px) {\n    .kal-hero, .kal-section, .kal-section-warm, .kal-section-dark,\n    .kal-backstory, .kal-brands, .kal-cta { padding: 32px 18px; }\n    .kal-short { padding: 20px 18px; }\n    .kal-details { grid-template-columns: 1fr; }\n    .kal-features { grid-template-columns: 1fr; }\n    .kal-stats { grid-template-columns: repeat(2, 1fr); }\n    .kal-pairings { grid-template-columns: 1fr; }\n    .kal-brands-row { gap: 14px; }\n    .kal-cta-btns { flex-direction: column; align-items: center; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"kal-wrap\"\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003cdiv class=\"kal-hero\"\u003e\n    \u003cdiv class=\"kal-edition-tag\"\u003eLimited Edition of 50\u003c\/div\u003e\n    \u003ch1\u003eAbandoned Line I\u003c\/h1\u003e\n    \u003cp class=\"kal-hero-sub\"\u003eA study in silence, memory, and tension\u003c\/p\u003e\n    \u003cp class=\"kal-tagline\"\u003eMoody \u003cspan\u003e·\u003c\/span\u003e Elegant \u003cspan\u003e·\u003c\/span\u003e Timeless\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESCRIPTION --\u003e\n  \u003cdiv class=\"kal-short\"\u003e\n    \u003cp\u003eA study in silence, memory, and tension. Abandoned Line I transforms the relic of a rotary telephone into a museum-grade meditation on absence, communication, and the beauty of what remains. Stark, restrained, and deeply atmospheric.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- ARTWORK DETAILS --\u003e\n  \u003cdiv class=\"kal-section\"\u003e\n    \u003cdiv class=\"kal-label\"\u003eArtwork Details\u003c\/div\u003e\n    \u003cdiv class=\"kal-details\"\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eTitle\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eAbandoned Line I\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eEdition\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eLimited Edition of 50\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eMedium\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eMuseum-grade archival print\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003ePalette\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eBlack · Ivory · Ash · Graphite · Weathered grey\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eFrame Suggestion\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eMatte black · Charcoal wood · Dark walnut\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eYear\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003e2026\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eCertification\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eSigned Certificate of Authenticity included\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-detail-cell\"\u003e\n        \u003cspan class=\"kal-detail-lbl\"\u003eStudio\u003c\/span\u003e\n        \u003cspan class=\"kal-detail-val\"\u003eKasian Art Studio\u003c\/span\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESCRIPTION --\u003e\n  \u003cdiv class=\"kal-section\" style=\"padding-top: 0;\"\u003e\n    \u003cdiv class=\"kal-divider\"\u003e\n      \u003cdiv class=\"kal-divider-line\"\u003e\u003c\/div\u003e\n      \u003cdiv class=\"kal-divider-dot\"\u003e\u003c\/div\u003e\n      \u003cdiv class=\"kal-divider-line\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kal-label\"\u003eThe Work\u003c\/div\u003e\n    \u003cdiv class=\"kal-body\"\u003e\n      \u003cp\u003eAbandoned Line I is a monochromatic portrait of disconnection rendered with remarkable restraint. A black handset hangs beside a weathered rotary dial, suspended against a pale surface marked by scrawled text, smudged memory, and the ghost of human presence. The composition is spare, but never empty. Every mark suggests what was once said, what was missed, and what can no longer be retrieved.\u003c\/p\u003e\n\n      \u003cdiv class=\"kal-quote\"\u003e\n        \u003cp\u003e\"Not merely black and white. It is psychological architecture — an heirloom of silence, framed as art.\"\u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cp\u003eThe work draws its power from contrast: dark hardware against a softened field, structure against erosion, object against silence. The telephone — once an instrument of immediacy — becomes here an artifact of distance. Not nostalgic in a decorative sense, but cinematic in an emotional one. It speaks to absence, repetition, longing, and time.\u003c\/p\u003e\n      \u003cp\u003eThis is a piece for interiors that value mood and meaning. In a gallery-like hallway, it becomes a quiet interruption. In a boutique hotel suite, it offers narrative without explanation. In a collector's office, library, or dressing room, it introduces a sophisticated tension between vintage form and contemporary minimalism.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CINEMATIC BACKSTORY --\u003e\n  \u003cdiv class=\"kal-backstory\"\u003e\n    \u003cdiv class=\"kal-label\"\u003eCinematic Origin\u003c\/div\u003e\n    \u003ch2\u003eThere was a time when every call mattered.\u003c\/h2\u003e\n    \u003cp\u003eAbandoned Line I was conceived as a portrait of what lingers after contact is lost. The rotary telephone, once intimate and immediate, is shown here as relic rather than tool — framed not by nostalgia, but by atmosphere. Scrawled marks, faded surface, and the weight of black against pale ground create a visual language of interruption, memory, and unfinished conversation.\u003c\/p\u003e\n    \u003cp\u003eThe work leans into the elegance of restraint. It does not explain itself. It invites projection. A missed call. A final word. A name left behind on the wall. It is this ambiguity that gives the piece its power.\u003c\/p\u003e\n    \u003cp\u003eCreated for interiors with emotional intelligence, Abandoned Line I belongs in spaces where art is chosen not merely for palette, but for psychological depth. It offers stillness with consequence. Silence with form. A memory rendered in luxury.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES --\u003e\n  \u003cdiv class=\"kal-section\"\u003e\n    \u003cdiv class=\"kal-label\"\u003eMuseum-Grade Standards\u003c\/div\u003e\n    \u003cdiv class=\"kal-features\"\u003e\n      \u003cdiv class=\"kal-feature\"\u003e\n        \u003cspan class=\"kal-feature-num\"\u003eI.\u003c\/span\u003e\n        \u003ch3\u003eStrictly Limited\u003c\/h3\u003e\n        \u003cp\u003eOnly 50 editions will ever exist. Each numbered, certified, and archived. Once the edition closes, it is permanently closed. Collectors acquire not just art, but scarcity itself.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-feature\"\u003e\n        \u003cspan class=\"kal-feature-num\"\u003eII.\u003c\/span\u003e\n        \u003ch3\u003eArchival Quality\u003c\/h3\u003e\n        \u003cp\u003eProduced on museum-grade archival materials with professional fine art printing standards — ensuring lasting tonal depth, contrast integrity, and collector-grade presentation across generations.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-feature\"\u003e\n        \u003cspan class=\"kal-feature-num\"\u003eIII.\u003c\/span\u003e\n        \u003ch3\u003eCollector Provenance\u003c\/h3\u003e\n        \u003cp\u003eEach edition ships with a signed Certificate of Authenticity from Kasian Art Studio, registered in the studio archive — an unbroken line of provenance from creation to collection.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- STATS --\u003e\n  \u003cdiv class=\"kal-stats\"\u003e\n    \u003cdiv class=\"kal-stat\"\u003e\n      \u003cspan class=\"kal-stat-num\"\u003e50\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-lbl\"\u003eTotal Editions\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-desc\"\u003eStrictly finite — permanently closed when sold\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kal-stat\"\u003e\n      \u003cspan class=\"kal-stat-num\"\u003e1\/1\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-lbl\"\u003eYour Number\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-desc\"\u003eIndividually numbered \u0026amp; certified\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kal-stat\"\u003e\n      \u003cspan class=\"kal-stat-num\"\u003e2026\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-lbl\"\u003eRelease Year\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-desc\"\u003eCurrent Kasian Art Studio archive\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"kal-stat\"\u003e\n      \u003cspan class=\"kal-stat-num\"\u003e∞\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-lbl\"\u003eAtmosphere\u003c\/span\u003e\n      \u003cspan class=\"kal-stat-desc\"\u003eSilence with consequence\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003cdiv class=\"kal-section-warm\"\u003e\n    \u003cdiv class=\"kal-label\"\u003eCurated Pairings\u003c\/div\u003e\n    \u003cdiv class=\"kal-pairings\"\u003e\n      \u003cdiv class=\"kal-pairing\"\u003e\n        \u003ch3\u003eAbandoned Line II\u003c\/h3\u003e\n        \u003cp\u003eA companion study in the same chromatic register — object, surface, and silence in continued conversation. Together they form a diptych of atmospheric restraint for collector walls and gallery corridors.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"kal-pairing\"\u003e\n        \u003ch3\u003eMonochrome Interior — Study I\u003c\/h3\u003e\n        \u003cp\u003eAn atmospheric abstraction in graphite and ivory that extends the mood of Abandoned Line I into pure spatial presence — ideal where still life and abstraction share deliberate, quiet tension.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- IDEAL SPACES --\u003e\n  \u003cdiv class=\"kal-section\"\u003e\n    \u003cdiv class=\"kal-label\"\u003eIdeal Environments\u003c\/div\u003e\n    \u003cul class=\"kal-spaces\"\u003e\n      \u003cli\u003eExecutive Offices \u0026amp; Private Studies\u003c\/li\u003e\n      \u003cli\u003eLibrary Walls \u0026amp; Reading Rooms\u003c\/li\u003e\n      \u003cli\u003eBoutique Hotel Suites \u0026amp; Corridors\u003c\/li\u003e\n      \u003cli\u003eFoyers, Hallways \u0026amp; Gallery Walls\u003c\/li\u003e\n      \u003cli\u003eCollector Residences \u0026amp; Dressing Rooms\u003c\/li\u003e\n      \u003cli\u003ePenthouse Lounges \u0026amp; Living Spaces\u003c\/li\u003e\n      \u003cli\u003eArchitecture-Led \u0026amp; Minimalist Interiors\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRS WELL WITH --\u003e\n  \u003cdiv class=\"kal-section-warm\"\u003e\n    \u003cdiv class=\"kal-label\"\u003ePairs Well With\u003c\/div\u003e\n    \u003cp class=\"kal-pairs-text\"\u003eCharcoal, ivory, bone, and smoked-metal interiors. Blackened steel, plaster, travertine, and dark walnut finishes. Minimalist portraiture, abstract monochrome works, and architectural photography. Boutique hotel corridors, private studies, executive offices, and gallery walls. Sculptural lighting and restrained, museum-like styling.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BRAND STRIP --\u003e\n  \u003cdiv class=\"kal-brands\"\u003e\n    \u003cspan class=\"kal-brands-label\"\u003ePositioned for distinguished hospitality collections\u003c\/span\u003e\n    \u003cdiv class=\"kal-brands-row\"\u003e\n      \u003cspan\u003eAman\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eFour Seasons\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eSt. Regis\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\n      \u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRosewood\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FINAL CTA --\u003e\n  \u003cdiv class=\"kal-cta\"\u003e\n    \u003ch2\u003eAcquire Your Edition\u003c\/h2\u003e\n    \u003cp\u003e50 editions. Each numbered, certified, and delivered with full provenance documentation.\u003c\/p\u003e\n    \u003cdiv class=\"kal-cta-btns\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Abandoned%20Line%20I\" class=\"kal-btn\"\u003eInquire to Acquire\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"kal-btn-ghost\"\u003eBrowse All Works\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003c!-- END KASIAN ART STUDIO — Abandoned Line I --\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47768259952805,"sku":"2643925_16039","price":11266.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47768259985573,"sku":"2643925_16045","price":11266.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47768260018341,"sku":"2643925_15700","price":11266.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_Apr_17_2026_05_45_43_PM.png?v=1777415386"},{"product_id":"veiled-arrival","title":"Veiled Arrival","description":"\u003cbody\u003e\n\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n  \u003ctitle\u003eVeiled Icon | Luxury Black Hat Portrait Art\u003c\/title\u003e\n  \u003cmeta name=\"description\" content=\"Cinematic black-and-white portrait art with a dramatic hat, refined shadow, and luxury framed canvas presence for collectors and designer interiors.\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500\u0026amp;family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500\u0026amp;family=Jost:wght@200;300;400;500\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n    :root {\n      --bg: #0a0a0a;\n      --surface: #111111;\n      --surface2: #161616;\n      --gold: #c9a227;\n      --gold-hover: #d4b13a;\n      --gold-dim: rgba(201,162,39,0.12);\n      --gold-line: rgba(201,162,39,0.3);\n      --white: #f5f0ea;\n      --muted: #888882;\n      --serif-display: 'Playfair Display', Georgia, serif;\n      --serif-body: 'Cormorant Garamond', Georgia, serif;\n      --sans: 'Jost', sans-serif;\n    }\n\n    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }\n\n    html { scroll-behavior: smooth; }\n\n    body {\n      background: var(--bg);\n      color: var(--white);\n      font-family: var(--serif-body);\n      font-size: 18px;\n      line-height: 1.75;\n      overflow-x: hidden;\n    }\n\n    \/* ── HEADER ── *\/\n    header {\n      position: fixed;\n      top: 0; left: 0; right: 0;\n      z-index: 100;\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n      padding: 22px 48px;\n      background: linear-gradient(to bottom, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0) 100%);\n      backdrop-filter: blur(0px);\n      transition: background 0.4s, backdrop-filter 0.4s;\n    }\n    header.scrolled {\n      background: rgba(10,10,10,0.94);\n      backdrop-filter: blur(18px);\n      border-bottom: 1px solid rgba(201,162,39,0.1);\n    }\n    .logo {\n      font-family: var(--serif-display);\n      font-size: 13px;\n      font-weight: 400;\n      letter-spacing: 0.22em;\n      text-transform: uppercase;\n      color: var(--gold);\n      text-decoration: none;\n    }\n    nav {\n      display: flex;\n      gap: 36px;\n      align-items: center;\n    }\n    nav a {\n      font-family: var(--sans);\n      font-size: 11px;\n      font-weight: 300;\n      letter-spacing: 0.18em;\n      text-transform: uppercase;\n      color: rgba(245,240,234,0.65);\n      text-decoration: none;\n      transition: color 0.25s;\n    }\n    nav a:hover { color: var(--gold); }\n    .nav-cta {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 400;\n      letter-spacing: 0.2em;\n      text-transform: uppercase;\n      color: var(--gold) !important;\n      border: 1px solid var(--gold-line);\n      padding: 9px 20px;\n      transition: background 0.25s, color 0.25s !important;\n    }\n    .nav-cta:hover {\n      background: var(--gold) !important;\n      color: var(--bg) !important;\n    }\n\n    \/* ── HERO ── *\/\n    .hero {\n      position: relative;\n      height: 100vh;\n      min-height: 680px;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      text-align: center;\n      overflow: hidden;\n    }\n\n    \/* Veil graphic background *\/\n    .hero-bg {\n      position: absolute;\n      inset: 0;\n      background:\n        radial-gradient(ellipse 60% 80% at 50% 40%, rgba(201,162,39,0.035) 0%, transparent 65%),\n        radial-gradient(ellipse 80% 60% at 30% 70%, rgba(255,255,255,0.015) 0%, transparent 55%);\n    }\n\n    \/* Animated veil lines *\/\n    .veil-lines {\n      position: absolute;\n      inset: 0;\n      pointer-events: none;\n      overflow: hidden;\n    }\n    .veil-lines::before {\n      content: '';\n      position: absolute;\n      top: -10%;\n      left: 40%;\n      width: 1px;\n      height: 130%;\n      background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.18) 30%, rgba(201,162,39,0.08) 70%, transparent);\n      transform: rotate(-12deg);\n      animation: veilDrift 8s ease-in-out infinite alternate;\n    }\n    .veil-lines::after {\n      content: '';\n      position: absolute;\n      top: -10%;\n      right: 38%;\n      width: 1px;\n      height: 130%;\n      background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.1) 40%, rgba(201,162,39,0.04) 75%, transparent);\n      transform: rotate(8deg);\n      animation: veilDrift 11s ease-in-out infinite alternate-reverse;\n    }\n    @keyframes veilDrift {\n      from { opacity: 0.4; transform: rotate(-12deg) translateX(0); }\n      to   { opacity: 1;   transform: rotate(-10deg) translateX(6px); }\n    }\n\n    \/* Floating gold particles *\/\n    .particles {\n      position: absolute;\n      inset: 0;\n      pointer-events: none;\n    }\n    .particle {\n      position: absolute;\n      width: 1px;\n      height: 1px;\n      background: var(--gold);\n      border-radius: 50%;\n      opacity: 0;\n      animation: particleFloat linear infinite;\n    }\n    @keyframes particleFloat {\n      0%   { transform: translateY(100vh) translateX(0); opacity: 0; }\n      10%  { opacity: 0.6; }\n      90%  { opacity: 0.3; }\n      100% { transform: translateY(-20vh) translateX(30px); opacity: 0; }\n    }\n\n    .hero-content {\n      position: relative;\n      z-index: 2;\n      max-width: 820px;\n      padding: 0 24px;\n      animation: heroReveal 1.4s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n    @keyframes heroReveal {\n      from { opacity: 0; transform: translateY(28px); }\n      to   { opacity: 1; transform: translateY(0); }\n    }\n\n    .hero-edition {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.32em;\n      text-transform: uppercase;\n      color: var(--gold);\n      margin-bottom: 28px;\n      animation: heroReveal 1.4s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n\n    .hero-title {\n      font-family: var(--serif-display);\n      font-size: clamp(64px, 10vw, 128px);\n      font-weight: 400;\n      line-height: 0.92;\n      letter-spacing: -0.02em;\n      color: var(--white);\n      margin-bottom: 12px;\n      animation: heroReveal 1.4s 0.35s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n    .hero-title em {\n      font-style: italic;\n      color: rgba(245,240,234,0.5);\n    }\n\n    .hero-subtitle {\n      font-family: var(--serif-body);\n      font-size: clamp(13px, 2vw, 15px);\n      font-weight: 300;\n      letter-spacing: 0.28em;\n      text-transform: uppercase;\n      color: var(--muted);\n      margin-bottom: 48px;\n      animation: heroReveal 1.4s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n\n    .hero-desc {\n      font-family: var(--serif-body);\n      font-size: clamp(17px, 2vw, 20px);\n      font-weight: 300;\n      line-height: 1.7;\n      color: rgba(245,240,234,0.72);\n      max-width: 620px;\n      margin: 0 auto 52px;\n      animation: heroReveal 1.4s 0.65s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n\n    .hero-cta-group {\n      display: flex;\n      gap: 20px;\n      justify-content: center;\n      flex-wrap: wrap;\n      animation: heroReveal 1.4s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n\n    .btn-primary {\n      display: inline-block;\n      font-family: var(--sans);\n      font-size: 11px;\n      font-weight: 400;\n      letter-spacing: 0.22em;\n      text-transform: uppercase;\n      color: var(--bg);\n      background: var(--gold);\n      padding: 16px 40px;\n      text-decoration: none;\n      transition: background 0.25s, transform 0.2s;\n    }\n    .btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }\n\n    .btn-ghost {\n      display: inline-block;\n      font-family: var(--sans);\n      font-size: 11px;\n      font-weight: 300;\n      letter-spacing: 0.22em;\n      text-transform: uppercase;\n      color: var(--gold);\n      border: 1px solid var(--gold-line);\n      padding: 16px 40px;\n      text-decoration: none;\n      transition: background 0.25s, color 0.25s, transform 0.2s;\n    }\n    .btn-ghost:hover { background: var(--gold-dim); transform: translateY(-1px); }\n\n    .scroll-hint {\n      position: absolute;\n      bottom: 36px;\n      left: 50%;\n      transform: translateX(-50%);\n      display: flex;\n      flex-direction: column;\n      align-items: center;\n      gap: 10px;\n      animation: heroReveal 1.4s 1.1s cubic-bezier(0.22,1,0.36,1) forwards;\n      opacity: 0;\n    }\n    .scroll-hint span {\n      font-family: var(--sans);\n      font-size: 9px;\n      letter-spacing: 0.28em;\n      text-transform: uppercase;\n      color: var(--muted);\n    }\n    .scroll-line {\n      width: 1px;\n      height: 44px;\n      background: linear-gradient(to bottom, var(--gold), transparent);\n      animation: scrollPulse 2s ease-in-out infinite;\n    }\n    @keyframes scrollPulse {\n      0%, 100% { opacity: 0.3; transform: scaleY(1); }\n      50%       { opacity: 1;   transform: scaleY(1.1); }\n    }\n\n    \/* ── GOLD DIVIDER ── *\/\n    .divider {\n      display: flex;\n      align-items: center;\n      gap: 24px;\n      padding: 0 48px;\n      margin: 0 auto;\n      max-width: 1100px;\n    }\n    .divider-line {\n      flex: 1;\n      height: 1px;\n      background: linear-gradient(to right, transparent, var(--gold-line), transparent);\n    }\n    .divider-diamond {\n      width: 6px;\n      height: 6px;\n      background: var(--gold);\n      transform: rotate(45deg);\n      flex-shrink: 0;\n    }\n\n    \/* ── SECTION BASE ── *\/\n    section {\n      padding: 100px 48px;\n    }\n\n    .section-inner {\n      max-width: 1100px;\n      margin: 0 auto;\n    }\n\n    .section-label {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.32em;\n      text-transform: uppercase;\n      color: var(--gold);\n      margin-bottom: 20px;\n      display: block;\n    }\n\n    .section-title {\n      font-family: var(--serif-display);\n      font-size: clamp(36px, 5vw, 60px);\n      font-weight: 400;\n      line-height: 1.1;\n      color: var(--white);\n      margin-bottom: 32px;\n    }\n\n    \/* ── VIDEO SECTION ── *\/\n    .video-section {\n      background: var(--surface);\n      padding: 80px 48px;\n    }\n    .video-label-row {\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n      max-width: 860px;\n      margin: 0 auto 32px;\n    }\n    .video-wrapper {\n      max-width: 860px;\n      margin: 0 auto;\n      position: relative;\n      border: 1px solid rgba(201,162,39,0.15);\n    }\n    .video-wrapper::before {\n      content: '';\n      display: block;\n      padding-top: 56.25%;\n    }\n    .video-wrapper iframe {\n      position: absolute;\n      inset: 0;\n      width: 100%;\n      height: 100%;\n    }\n    .video-caption {\n      text-align: center;\n      margin-top: 24px;\n      font-family: var(--serif-body);\n      font-size: 14px;\n      font-style: italic;\n      color: var(--muted);\n      letter-spacing: 0.06em;\n    }\n\n    \/* ── DESCRIPTION SECTION ── *\/\n    .desc-section {\n      background: var(--bg);\n    }\n    .desc-grid {\n      display: grid;\n      grid-template-columns: 1fr 1fr;\n      gap: 80px;\n      align-items: start;\n    }\n    .desc-body {\n      font-family: var(--serif-body);\n      font-size: clamp(17px, 1.8vw, 20px);\n      font-weight: 300;\n      line-height: 1.8;\n      color: rgba(245,240,234,0.8);\n    }\n    .desc-body p + p { margin-top: 24px; }\n    .desc-aside {\n      border-left: 1px solid var(--gold-line);\n      padding-left: 40px;\n    }\n    .aside-quote {\n      font-family: var(--serif-display);\n      font-size: clamp(22px, 2.5vw, 28px);\n      font-weight: 400;\n      font-style: italic;\n      line-height: 1.45;\n      color: rgba(245,240,234,0.6);\n      margin-bottom: 32px;\n    }\n    .aside-details {\n      display: flex;\n      flex-direction: column;\n      gap: 16px;\n    }\n    .aside-detail {\n      display: flex;\n      justify-content: space-between;\n      border-bottom: 1px solid rgba(255,255,255,0.06);\n      padding-bottom: 14px;\n    }\n    .detail-key {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.2em;\n      text-transform: uppercase;\n      color: var(--muted);\n    }\n    .detail-val {\n      font-family: var(--serif-body);\n      font-size: 14px;\n      font-weight: 400;\n      color: var(--white);\n      text-align: right;\n    }\n\n    \/* ── BACKSTORY SECTION ── *\/\n    .backstory-section {\n      background: var(--surface);\n      position: relative;\n      overflow: hidden;\n    }\n    .backstory-section::before {\n      content: '\"';\n      position: absolute;\n      top: -60px;\n      left: 24px;\n      font-family: var(--serif-display);\n      font-size: 400px;\n      color: rgba(201,162,39,0.03);\n      line-height: 1;\n      pointer-events: none;\n      user-select: none;\n    }\n    .backstory-inner {\n      max-width: 740px;\n      margin: 0 auto;\n      position: relative;\n      z-index: 1;\n    }\n    .backstory-body {\n      font-family: var(--serif-body);\n      font-size: clamp(18px, 1.9vw, 22px);\n      font-weight: 300;\n      line-height: 1.85;\n      color: rgba(245,240,234,0.78);\n    }\n    .backstory-body p + p { margin-top: 28px; }\n    .backstory-body em {\n      color: var(--gold);\n      font-style: italic;\n    }\n\n    \/* ── FEATURES GRID ── *\/\n    .features-section {\n      background: var(--bg);\n    }\n    .features-grid {\n      display: grid;\n      grid-template-columns: repeat(3, 1fr);\n      gap: 2px;\n      margin-top: 56px;\n    }\n    .feature-card {\n      background: var(--surface2);\n      padding: 44px 36px;\n      border-top: 1px solid var(--gold-line);\n      transition: background 0.3s;\n    }\n    .feature-card:hover { background: #1a1a18; }\n    .feature-num {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.24em;\n      color: var(--gold);\n      margin-bottom: 20px;\n    }\n    .feature-title {\n      font-family: var(--serif-display);\n      font-size: 22px;\n      font-weight: 500;\n      color: var(--white);\n      margin-bottom: 14px;\n      line-height: 1.3;\n    }\n    .feature-body {\n      font-family: var(--serif-body);\n      font-size: 16px;\n      font-weight: 300;\n      line-height: 1.7;\n      color: rgba(245,240,234,0.6);\n    }\n\n    \/* ── EDITION STATS ── *\/\n    .stats-section {\n      background: var(--surface);\n      padding: 72px 48px;\n    }\n    .stats-grid {\n      display: grid;\n      grid-template-columns: repeat(4, 1fr);\n      divide-x: 1px solid var(--gold-line);\n      border: 1px solid rgba(201,162,39,0.12);\n      max-width: 1100px;\n      margin: 0 auto;\n    }\n    .stat-item {\n      padding: 44px 32px;\n      text-align: center;\n      border-right: 1px solid rgba(201,162,39,0.12);\n    }\n    .stat-item:last-child { border-right: none; }\n    .stat-num {\n      font-family: var(--serif-display);\n      font-size: clamp(40px, 5vw, 60px);\n      font-weight: 300;\n      color: var(--gold);\n      line-height: 1;\n      margin-bottom: 12px;\n    }\n    .stat-label {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.22em;\n      text-transform: uppercase;\n      color: var(--muted);\n    }\n\n    \/* ── PAIRINGS ── *\/\n    .pairings-section {\n      background: var(--bg);\n    }\n    .pairings-grid {\n      display: grid;\n      grid-template-columns: repeat(2, 1fr);\n      gap: 2px;\n      margin-top: 56px;\n    }\n    .pairing-card {\n      background: var(--surface2);\n      padding: 44px 40px;\n      border-left: 2px solid transparent;\n      transition: border-color 0.3s, background 0.3s;\n      cursor: default;\n    }\n    .pairing-card:hover {\n      border-left-color: var(--gold);\n      background: #131311;\n    }\n    .pairing-label {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.24em;\n      text-transform: uppercase;\n      color: var(--gold);\n      margin-bottom: 14px;\n    }\n    .pairing-name {\n      font-family: var(--serif-display);\n      font-size: 24px;\n      font-weight: 500;\n      color: var(--white);\n      margin-bottom: 10px;\n    }\n    .pairing-desc {\n      font-family: var(--serif-body);\n      font-size: 16px;\n      font-weight: 300;\n      color: rgba(245,240,234,0.6);\n      line-height: 1.65;\n    }\n\n    \/* ── COLLECTION CTA ── *\/\n    .collection-section {\n      background: var(--surface);\n      text-align: center;\n      padding: 100px 48px;\n      position: relative;\n      overflow: hidden;\n    }\n    .collection-section::after {\n      content: '';\n      position: absolute;\n      bottom: 0; left: 0; right: 0;\n      height: 1px;\n      background: linear-gradient(to right, transparent, var(--gold-line), transparent);\n    }\n    .collection-eyebrow {\n      font-family: var(--sans);\n      font-size: 10px;\n      letter-spacing: 0.32em;\n      text-transform: uppercase;\n      color: var(--gold);\n      margin-bottom: 24px;\n    }\n    .collection-title {\n      font-family: var(--serif-display);\n      font-size: clamp(32px, 5vw, 58px);\n      font-weight: 400;\n      font-style: italic;\n      color: var(--white);\n      margin-bottom: 20px;\n    }\n    .collection-sub {\n      font-family: var(--serif-body);\n      font-size: 18px;\n      font-weight: 300;\n      color: rgba(245,240,234,0.6);\n      margin-bottom: 48px;\n      max-width: 560px;\n      margin-left: auto;\n      margin-right: auto;\n    }\n\n    \/* ── INVESTMENT SECTION ── *\/\n    .investment-section {\n      background: var(--bg);\n    }\n    .investment-grid {\n      display: grid;\n      grid-template-columns: 1fr 1fr;\n      gap: 80px;\n      align-items: center;\n    }\n    .spaces-list {\n      list-style: none;\n      margin-top: 32px;\n      display: flex;\n      flex-direction: column;\n      gap: 0;\n    }\n    .spaces-list li {\n      font-family: var(--serif-body);\n      font-size: 17px;\n      font-weight: 300;\n      color: rgba(245,240,234,0.7);\n      padding: 16px 0;\n      border-bottom: 1px solid rgba(255,255,255,0.06);\n      display: flex;\n      align-items: center;\n      gap: 16px;\n    }\n    .spaces-list li::before {\n      content: '';\n      width: 20px;\n      height: 1px;\n      background: var(--gold);\n      flex-shrink: 0;\n    }\n    .investment-copy {\n      font-family: var(--serif-body);\n      font-size: clamp(17px, 1.8vw, 20px);\n      font-weight: 300;\n      line-height: 1.8;\n      color: rgba(245,240,234,0.75);\n    }\n    .investment-copy p + p { margin-top: 22px; }\n\n    \/* ── BRAND STRIP ── *\/\n    .brand-strip {\n      background: var(--surface2);\n      padding: 36px 48px;\n      border-top: 1px solid rgba(201,162,39,0.08);\n      border-bottom: 1px solid rgba(201,162,39,0.08);\n    }\n    .brand-strip-inner {\n      max-width: 1100px;\n      margin: 0 auto;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      gap: 48px;\n      flex-wrap: wrap;\n    }\n    .brand-strip-label {\n      font-family: var(--sans);\n      font-size: 9px;\n      letter-spacing: 0.28em;\n      text-transform: uppercase;\n      color: var(--muted);\n      flex-shrink: 0;\n    }\n    .brand-strip-divider {\n      width: 1px;\n      height: 18px;\n      background: rgba(201,162,39,0.2);\n    }\n    .brand-name {\n      font-family: var(--sans);\n      font-size: 11px;\n      font-weight: 300;\n      letter-spacing: 0.2em;\n      text-transform: uppercase;\n      color: rgba(245,240,234,0.4);\n    }\n\n    \/* ── FINAL CTA ── *\/\n    .final-cta {\n      background: var(--bg);\n      text-align: center;\n      padding: 120px 48px;\n      position: relative;\n    }\n    .final-cta::before {\n      content: '';\n      position: absolute;\n      top: 0; left: 50%; transform: translateX(-50%);\n      width: 1px;\n      height: 80px;\n      background: linear-gradient(to bottom, var(--gold-line), transparent);\n    }\n    .final-cta-title {\n      font-family: var(--serif-display);\n      font-size: clamp(36px, 5vw, 64px);\n      font-weight: 400;\n      font-style: italic;\n      color: var(--white);\n      margin-bottom: 20px;\n      line-height: 1.15;\n    }\n    .final-cta-sub {\n      font-family: var(--serif-body);\n      font-size: 18px;\n      font-weight: 300;\n      color: rgba(245,240,234,0.6);\n      margin-bottom: 52px;\n      max-width: 500px;\n      margin-left: auto;\n      margin-right: auto;\n    }\n    .final-cta-email {\n      display: block;\n      font-family: var(--sans);\n      font-size: 11px;\n      font-weight: 300;\n      letter-spacing: 0.18em;\n      color: var(--muted);\n      margin-top: 28px;\n      text-decoration: none;\n    }\n    .final-cta-email:hover { color: var(--gold); }\n\n    \/* ── FOOTER ── *\/\n    footer {\n      background: var(--surface);\n      border-top: 1px solid rgba(201,162,39,0.08);\n      padding: 60px 48px 40px;\n    }\n    .footer-inner {\n      max-width: 1100px;\n      margin: 0 auto;\n    }\n    .footer-top {\n      display: flex;\n      justify-content: space-between;\n      align-items: flex-start;\n      margin-bottom: 48px;\n      flex-wrap: wrap;\n      gap: 40px;\n    }\n    .footer-logo {\n      font-family: var(--serif-display);\n      font-size: 15px;\n      font-weight: 400;\n      letter-spacing: 0.18em;\n      text-transform: uppercase;\n      color: var(--gold);\n      text-decoration: none;\n    }\n    .footer-tagline {\n      font-family: var(--serif-body);\n      font-size: 13px;\n      font-style: italic;\n      color: var(--muted);\n      margin-top: 6px;\n    }\n    .footer-links {\n      display: flex;\n      gap: 32px;\n      flex-wrap: wrap;\n    }\n    .footer-links a {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.2em;\n      text-transform: uppercase;\n      color: var(--muted);\n      text-decoration: none;\n      transition: color 0.2s;\n    }\n    .footer-links a:hover { color: var(--gold); }\n    .footer-social {\n      display: flex;\n      gap: 20px;\n      align-items: center;\n    }\n    .footer-social a {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.2em;\n      text-transform: uppercase;\n      color: rgba(245,240,234,0.35);\n      text-decoration: none;\n      transition: color 0.2s;\n    }\n    .footer-social a:hover { color: var(--gold); }\n    .footer-bottom {\n      border-top: 1px solid rgba(255,255,255,0.06);\n      padding-top: 28px;\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      flex-wrap: wrap;\n      gap: 16px;\n    }\n    .footer-copy {\n      font-family: var(--sans);\n      font-size: 10px;\n      font-weight: 300;\n      letter-spacing: 0.14em;\n      color: rgba(245,240,234,0.25);\n    }\n\n    \/* ── FADE-IN OBSERVER ── *\/\n    .fade-up {\n      opacity: 0;\n      transform: translateY(24px);\n      transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);\n    }\n    .fade-up.visible {\n      opacity: 1;\n      transform: translateY(0);\n    }\n\n    \/* ── RESPONSIVE ── *\/\n    @media (max-width: 900px) {\n      header { padding: 18px 24px; }\n      nav a:not(.nav-cta) { display: none; }\n      section { padding: 72px 24px; }\n      .desc-grid,\n      .investment-grid { grid-template-columns: 1fr; gap: 48px; }\n      .features-grid { grid-template-columns: 1fr; }\n      .stats-grid { grid-template-columns: repeat(2, 1fr); }\n      .pairings-grid { grid-template-columns: 1fr; }\n      .brand-strip-inner { gap: 24px; }\n      footer { padding: 48px 24px 32px; }\n      .footer-top { flex-direction: column; }\n      .footer-bottom { flex-direction: column; text-align: center; }\n      .video-section, .stats-section, .brand-strip { padding-left: 24px; padding-right: 24px; }\n      .divider { padding: 0 24px; }\n    }\n  \u003c\/style\u003e\n\n\n\n  \u003c!-- HEADER --\u003e\n  \u003cheader id=\"site-header\"\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"logo\"\u003eKasian Art Studio\u003c\/a\u003e\n    \u003cnav\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"nav-cta\"\u003eInquire\u003c\/a\u003e\n    \u003c\/nav\u003e\n  \u003c\/header\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003csection class=\"hero\"\u003e\n    \u003cdiv class=\"hero-bg\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"veil-lines\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"particles\" id=\"particles\"\u003e\u003c\/div\u003e\n\n    \u003cdiv class=\"hero-content\"\u003e\n      \u003cp class=\"hero-edition\"\u003eLimited Edition Fine Art  ·  Framed Canvas  ·  2026\u003c\/p\u003e\n      \u003ch1 class=\"hero-title\"\u003eVeiled\u003cbr\u003e\u003cem\u003eIcon\u003c\/em\u003e\n\u003c\/h1\u003e\n      \u003cp class=\"hero-subtitle\"\u003eMoody  ·  Elegant  ·  Timeless\u003c\/p\u003e\n      \u003cp class=\"hero-desc\"\u003eA cinematic black-and-white portrait defined by shadow, gaze, and controlled glamour — crafted for luxury interiors, boutique hotel suites, and collector-grade spaces.\u003c\/p\u003e\n      \u003cdiv class=\"hero-cta-group\"\u003e\n        \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry%3A%20Veiled%20Icon\" class=\"btn-primary\"\u003eInquire About This Work\u003c\/a\u003e\n        \u003ca href=\"#video\" class=\"btn-ghost\"\u003eView the Work\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"scroll-hint\"\u003e\n      \u003cspan\u003eExplore\u003c\/span\u003e\n      \u003cdiv class=\"scroll-line\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- DIVIDER --\u003e\n  \u003cdiv class=\"divider\" style=\"padding-top:0;padding-bottom:0;\"\u003e\n    \u003cdiv class=\"divider-line\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"divider-diamond\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"divider-line\"\u003e\u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- VIDEO --\u003e\n  \u003csection class=\"video-section\" id=\"video\"\u003e\n    \u003cdiv class=\"video-label-row\"\u003e\n      \u003cspan class=\"section-label\" style=\"margin-bottom:0;\"\u003eThe Work in Motion\u003c\/span\u003e\n      \u003cspan style=\"font-family:var(--serif-body);font-size:13px;font-style:italic;color:var(--muted);\"\u003eKasian Art Studio — 2026\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"video-wrapper fade-up\"\u003e\n      \u003ciframe src=\"https:\/\/www.youtube-nocookie.com\/embed\/cJfFVTeZqWA?rel=0\u0026amp;modestbranding=1\u0026amp;color=white\" title=\"Veiled Icon — Kasian Art Studio\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n      \u003c\/iframe\u003e\n    \u003c\/div\u003e\n    \u003cp class=\"video-caption fade-up\"\u003eVeiled Icon  ·  Black Hat Portrait  ·  Limited Edition Fine Art\u003c\/p\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- DESCRIPTION --\u003e\n  \u003csection class=\"desc-section\" id=\"about\"\u003e\n    \u003cdiv class=\"section-inner\"\u003e\n      \u003cdiv class=\"desc-grid\"\u003e\n        \u003cdiv class=\"fade-up\"\u003e\n          \u003cspan class=\"section-label\"\u003eAbout the Work\u003c\/span\u003e\n          \u003cdiv class=\"desc-body\"\u003e\n            \u003cp\u003eVeiled Icon is a study in elegance, concealment, and quiet command. The composition centers on a woman partially hidden beneath the sweep of a dramatic black hat, her gaze emerging with precision through the architecture of shadow. Rendered in a refined monochrome palette, the piece carries the atmosphere of old-world cinema, private salons, couture photography, and contemporary fine art portraiture.\u003c\/p\u003e\n            \u003cp\u003eThe work feels intimate without softness, glamorous without excess. The oversized hat creates sculptural tension across the composition, while the silvered hair, poised hand, and direct eye establish a sense of mystery and authority. Every detail is intentional — the curve of the shoulder, the controlled contrast, the hidden face, the restraint of the palette.\u003c\/p\u003e\n            \u003cp\u003eDesigned for interiors that require presence, Veiled Icon brings a cinematic feminine energy to the room — rare, composed, and unmistakably elegant. This piece is created for collectors and designers who understand that luxury does not need to announce itself. It only needs to hold the room.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"desc-aside fade-up\" style=\"transition-delay:0.15s\"\u003e\n          \u003cp class=\"aside-quote\"\u003e\"Luxury does not need to announce itself. It only needs to hold the room.\"\u003c\/p\u003e\n          \u003cdiv class=\"aside-details\"\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003eTitle\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003eVeiled Icon\u003c\/span\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003eMedium\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003eFramed Canvas Print\u003c\/span\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003ePalette\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003eObsidian, Silver, Ivory\u003c\/span\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003eRelease Year\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003e2026\u003c\/span\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003eFrame Options\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003e3 Colourways\u003c\/span\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003eFrame Thickness\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003e1.25″ \/ 3.18 cm\u003c\/span\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"aside-detail\"\u003e\n              \u003cspan class=\"detail-key\"\u003eStudio\u003c\/span\u003e\n              \u003cspan class=\"detail-val\"\u003eKasian Art Studio, L.L.C.\u003c\/span\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- DIVIDER --\u003e\n  \u003cdiv class=\"divider\"\u003e\n    \u003cdiv class=\"divider-line\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"divider-diamond\"\u003e\u003c\/div\u003e\n    \u003cdiv class=\"divider-line\"\u003e\u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BACKSTORY --\u003e\n  \u003csection class=\"backstory-section\" id=\"story\"\u003e\n    \u003cdiv class=\"backstory-inner\"\u003e\n      \u003cspan class=\"section-label fade-up\"\u003eCinematic Backstory\u003c\/span\u003e\n      \u003ch2 class=\"section-title fade-up\" style=\"margin-bottom:48px;\"\u003eShe Does Not\u003cbr\u003eReveal Herself Fully.\u003c\/h2\u003e\n      \u003cdiv class=\"backstory-body fade-up\"\u003e\n        \u003cp\u003eThat is the power of \u003cem\u003eVeiled Icon\u003c\/em\u003e — a portrait built around restraint, shadow, and the language of withheld presence. The woman in the composition is not posed for approval. She appears as an apparition of cinema and couture, caught between concealment and command. The brim of the hat becomes architecture. The eye becomes the center of gravity. The hand, the shoulder, the silvered hair — each detail suggests control, intimacy, and a life lived behind velvet doors.\u003c\/p\u003e\n        \u003cp\u003eThere is something timeless in the piece: the feeling of a private hotel suite at night, a mirrored dressing room before an evening arrival, the silence before a gallery opening, the final glance before someone becomes unforgettable.\u003c\/p\u003e\n        \u003cp\u003eVeiled Icon was created for spaces where femininity is not ornamental, but powerful. It carries the discipline of monochrome, the glamour of old cinema, and the emotional distance of a figure who knows the value of mystery.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- FEATURES GRID --\u003e\n  \u003csection class=\"features-section\" id=\"details\"\u003e\n    \u003cdiv class=\"section-inner\"\u003e\n      \u003cspan class=\"section-label fade-up\"\u003eMuseum-Grade Presentation\u003c\/span\u003e\n      \u003ch2 class=\"section-title fade-up\"\u003eCrafted for the\u003cbr\u003eCollector Standard\u003c\/h2\u003e\n      \u003cdiv class=\"features-grid\"\u003e\n        \u003cdiv class=\"feature-card fade-up\"\u003e\n          \u003cp class=\"feature-num\"\u003e01\u003c\/p\u003e\n          \u003ch3 class=\"feature-title\"\u003eLimited Edition Scarcity\u003c\/h3\u003e\n          \u003cp class=\"feature-body\"\u003eEach edition is produced in a strictly limited run. Once the edition closes, no further prints are authorized. This scarcity protects the collector's investment and the work's long-term value.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-up\" style=\"transition-delay:0.1s\"\u003e\n          \u003cp class=\"feature-num\"\u003e02\u003c\/p\u003e\n          \u003ch3 class=\"feature-title\"\u003eArchival-Grade Materials\u003c\/h3\u003e\n          \u003cp class=\"feature-body\"\u003ePresented on premium framed canvas with a pine wood frame, 1.25″ frame depth, and canvas fabric weight of 10.15 oz\/yd². Open-back construction with rubber corner pads and attached hanging hardware.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-up\" style=\"transition-delay:0.2s\"\u003e\n          \u003cp class=\"feature-num\"\u003e03\u003c\/p\u003e\n          \u003ch3 class=\"feature-title\"\u003eCertificate of Authenticity\u003c\/h3\u003e\n          \u003cp class=\"feature-body\"\u003eEvery edition is accompanied by a Kasian Art Studio Certificate of Authenticity, embossed with the studio seal, edition number, and provenance statement — designed to remain with the work as a permanent collector record.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-up\" style=\"transition-delay:0.05s\"\u003e\n          \u003cp class=\"feature-num\"\u003e04\u003c\/p\u003e\n          \u003ch3 class=\"feature-title\"\u003eGallery-Ready Presentation\u003c\/h3\u003e\n          \u003cp class=\"feature-body\"\u003eThe floating frame creates a subtle architectural shadow around the canvas, giving the artwork depth while allowing the portrait to remain the visual focus. Available in three frame colorways.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-up\" style=\"transition-delay:0.15s\"\u003e\n          \u003cp class=\"feature-num\"\u003e05\u003c\/p\u003e\n          \u003ch3 class=\"feature-title\"\u003eHospitality \u0026amp; Residential Grade\u003c\/h3\u003e\n          \u003cp class=\"feature-body\"\u003eDesigned and sourced for luxury residential, hospitality, and designer-led environments. Blank product sourced from Canada, the United Kingdom, and the United States to meet international quality standards.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"feature-card fade-up\" style=\"transition-delay:0.25s\"\u003e\n          \u003cp class=\"feature-num\"\u003e06\u003c\/p\u003e\n          \u003ch3 class=\"feature-title\"\u003eInvestment-Grade Positioning\u003c\/h3\u003e\n          \u003cp class=\"feature-body\"\u003eCinematic feminine portraiture occupies a rare category: works that hold emotional and monetary presence. Veiled Icon is designed for collectors and designers who view art as both a statement and a long-term asset.\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- EDITION STATS --\u003e\n  \u003csection class=\"stats-section\"\u003e\n    \u003cdiv class=\"stats-grid fade-up\"\u003e\n      \u003cdiv class=\"stat-item\"\u003e\n        \u003cp class=\"stat-num\"\u003eL.E.\u003c\/p\u003e\n        \u003cp class=\"stat-label\"\u003eLimited Edition Only\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"stat-item\"\u003e\n        \u003cp class=\"stat-num\"\u003e3\u003c\/p\u003e\n        \u003cp class=\"stat-label\"\u003eFrame Colourways\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"stat-item\"\u003e\n        \u003cp class=\"stat-num\"\u003e1.25″\u003c\/p\u003e\n        \u003cp class=\"stat-label\"\u003eFrame Depth\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"stat-item\"\u003e\n        \u003cp class=\"stat-num\"\u003eCOA\u003c\/p\u003e\n        \u003cp class=\"stat-label\"\u003eCertificate Included\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003csection class=\"pairings-section\" id=\"pairings\"\u003e\n    \u003cdiv class=\"section-inner\"\u003e\n      \u003cspan class=\"section-label fade-up\"\u003eCurated Pairings\u003c\/span\u003e\n      \u003ch2 class=\"section-title fade-up\"\u003ePairs Beautifully With\u003c\/h2\u003e\n      \u003cdiv class=\"pairings-grid\"\u003e\n        \u003cdiv class=\"pairing-card fade-up\"\u003e\n          \u003cp class=\"pairing-label\"\u003ePairing 01\u003c\/p\u003e\n          \u003ch3 class=\"pairing-name\"\u003eMonochrome Abstract Works\u003c\/h3\u003e\n          \u003cp class=\"pairing-desc\"\u003eFor interiors that lean cinematic, architectural, and restrained. The stark palette of Veiled Icon sits in natural dialogue with bold abstract compositions in black, white, and charcoal.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-up\" style=\"transition-delay:0.1s\"\u003e\n          \u003cp class=\"pairing-label\"\u003ePairing 02\u003c\/p\u003e\n          \u003ch3 class=\"pairing-name\"\u003eFashion-Inspired Portraiture\u003c\/h3\u003e\n          \u003cp class=\"pairing-desc\"\u003eIdeal for dressing rooms, luxury closets, boutique hotel suites, salons, and feminine private spaces where editorial energy is the defining interior language.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-up\" style=\"transition-delay:0.05s\"\u003e\n          \u003cp class=\"pairing-label\"\u003ePairing 03\u003c\/p\u003e\n          \u003ch3 class=\"pairing-name\"\u003eGold, Ivory, or Charcoal Interiors\u003c\/h3\u003e\n          \u003cp class=\"pairing-desc\"\u003eThe stark black-and-white palette allows the work to sit elegantly against stone, plaster, velvet, lacquer, brass, and smoked glass. Equally at home in warm ivory rooms and cooler obsidian spaces.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"pairing-card fade-up\" style=\"transition-delay:0.15s\"\u003e\n          \u003cp class=\"pairing-label\"\u003ePairing 04\u003c\/p\u003e\n          \u003ch3 class=\"pairing-name\"\u003eLarge-Scale Statement Walls\u003c\/h3\u003e\n          \u003cp class=\"pairing-desc\"\u003eBest placed above a console, in a bedroom suite, along a gallery corridor, or within a curated salon-style arrangement. The composition commands presence at scale.\u003c\/p\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- COLLECTION CTA --\u003e\n  \u003csection class=\"collection-section\"\u003e\n    \u003cp class=\"collection-eyebrow fade-up\"\u003eExplore the Collection\u003c\/p\u003e\n    \u003ch2 class=\"collection-title fade-up\"\u003eBlack \u0026amp; White Luxury\u003c\/h2\u003e\n    \u003cp class=\"collection-sub fade-up\"\u003eDiscover the full range of cinematic monochrome portraiture and fashion-inspired works from Kasian Art Studio.\u003c\/p\u003e\n    \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"btn-ghost fade-up\"\u003eView All Collections\u003c\/a\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- INVESTMENT \/ SPACES --\u003e\n  \u003csection class=\"investment-section\" id=\"investment\"\u003e\n    \u003cdiv class=\"section-inner\"\u003e\n      \u003cdiv class=\"investment-grid\"\u003e\n        \u003cdiv class=\"fade-up\"\u003e\n          \u003cspan class=\"section-label\"\u003eDesigned For\u003c\/span\u003e\n          \u003ch2 class=\"section-title\"\u003eSpaces of\u003cbr\u003eQuiet Authority\u003c\/h2\u003e\n          \u003cul class=\"spaces-list\"\u003e\n            \u003cli\u003eLuxury Bedrooms \u0026amp; Dressing Suites\u003c\/li\u003e\n            \u003cli\u003eBoutique Hotel Corridors \u0026amp; Suites\u003c\/li\u003e\n            \u003cli\u003ePrivate Penthouses \u0026amp; Residences\u003c\/li\u003e\n            \u003cli\u003eHigh-End Salons \u0026amp; Private Lounges\u003c\/li\u003e\n            \u003cli\u003eGallery Walls \u0026amp; Collector Residences\u003c\/li\u003e\n            \u003cli\u003eSpa Interiors \u0026amp; Wellness Retreats\u003c\/li\u003e\n            \u003cli\u003eCurated Hospitality Environments\u003c\/li\u003e\n          \u003c\/ul\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"fade-up\" style=\"transition-delay:0.15s\"\u003e\n          \u003cdiv class=\"investment-copy\"\u003e\n            \u003cp\u003eVeiled Icon occupies a rare position in the luxury art market: a cinematic feminine portrait that is equally at home in a private dressing suite and a boutique hotel corridor. It does not compete with the room. It becomes the room's defining element.\u003c\/p\u003e\n            \u003cp\u003eFor interior designers and hospitality buyers, the piece integrates naturally into monochrome, warm-neutral, and deep-toned environments. Its vertical presence anchors feature walls, console settings, and gallery arrangements with equal confidence.\u003c\/p\u003e\n            \u003cp\u003eFor collectors, it represents the understated end of the Kasian Art Studio catalogue — a work of emotional precision and visual restraint that tends to hold its position in any room it enters.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- BRAND STRIP --\u003e\n  \u003cdiv class=\"brand-strip\"\u003e\n    \u003cdiv class=\"brand-strip-inner\"\u003e\n      \u003cspan class=\"brand-strip-label\"\u003eTrusted for Luxury Hospitality\u003c\/span\u003e\n      \u003cdiv class=\"brand-strip-divider\"\u003e\u003c\/div\u003e\n      \u003cspan class=\"brand-name\"\u003eAman\u003c\/span\u003e\n      \u003cspan class=\"brand-name\"\u003eFour Seasons\u003c\/span\u003e\n      \u003cspan class=\"brand-name\"\u003eSt. Regis\u003c\/span\u003e\n      \u003cspan class=\"brand-name\"\u003eRitz-Carlton Reserve\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FINAL CTA --\u003e\n  \u003csection class=\"final-cta\"\u003e\n    \u003ch2 class=\"final-cta-title fade-up\"\u003eReserve Your Edition\u003c\/h2\u003e\n    \u003cp class=\"final-cta-sub fade-up\"\u003eAvailability is limited. Collector and designer inquiries are welcomed directly.\u003c\/p\u003e\n    \u003cdiv class=\"fade-up\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Inquiry%3A%20Veiled%20Icon%20%E2%80%94%20Edition%20Availability\" class=\"btn-primary\"\u003eContact the Studio\u003c\/a\u003e\n    \u003c\/div\u003e\n    \u003ca href=\"mailto:kristina@kasianartstudio.com\" class=\"final-cta-email fade-up\"\u003ekristina@kasianartstudio.com\u003c\/a\u003e\n  \u003c\/section\u003e\n\n  \u003c!-- FOOTER --\u003e\n  \u003cfooter\u003e\n    \u003cdiv class=\"footer-inner\"\u003e\n      \u003cdiv class=\"footer-top\"\u003e\n        \u003cdiv\u003e\n          \u003ca href=\"https:\/\/www.kasianartstudio.com\" class=\"footer-logo\"\u003eKasian Art Studio\u003c\/a\u003e\n          \u003cp class=\"footer-tagline\"\u003eMoody. Elegant. Timeless.\u003c\/p\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-links\"\u003e\n          \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\"\u003eCollections\u003c\/a\u003e\n          \u003ca href=\"https:\/\/www.kasianartstudio.com\/pages\/about\"\u003eAbout\u003c\/a\u003e\n          \u003ca href=\"mailto:kristina@kasianartstudio.com\"\u003eContact\u003c\/a\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"footer-social\"\u003e\n          \u003ca href=\"https:\/\/www.instagram.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003eInstagram\u003c\/a\u003e\n          \u003ca href=\"https:\/\/www.pinterest.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003ePinterest\u003c\/a\u003e\n          \u003ca href=\"https:\/\/www.facebook.com\/kasianartstudio\" target=\"_blank\" rel=\"noopener\"\u003eFacebook\u003c\/a\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"footer-bottom\"\u003e\n        \u003cp class=\"footer-copy\"\u003e© 2026 Kasian Art Studio, L.L.C. All rights reserved. Limited edition fine art.\u003c\/p\u003e\n        \u003cp class=\"footer-copy\"\u003eBirmingham, Alabama  ·  kasianartstudio.com\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/footer\u003e\n\n  \u003cscript\u003e\n    \/\/ Header scroll state\n    const header = document.getElementById('site-header');\n    window.addEventListener('scroll', () =\u003e {\n      header.classList.toggle('scrolled', window.scrollY \u003e 60);\n    }, { passive: true });\n\n    \/\/ Intersection observer for fade-up\n    const observer = new IntersectionObserver((entries) =\u003e {\n      entries.forEach(e =\u003e {\n        if (e.isIntersecting) {\n          e.target.classList.add('visible');\n          observer.unobserve(e.target);\n        }\n      });\n    }, { threshold: 0.12, rootMargin: '0px 0px -40px 0px' });\n\n    document.querySelectorAll('.fade-up').forEach(el =\u003e observer.observe(el));\n\n    \/\/ Floating gold particles\n    const container = document.getElementById('particles');\n    const count = 22;\n    for (let i = 0; i \u003c count; i++) {\n      const p = document.createElement('div');\n      p.className = 'particle';\n      p.style.cssText = `\n        left: ${Math.random() * 100}%;\n        width: ${Math.random() * 2 + 1}px;\n        height: ${Math.random() * 2 + 1}px;\n        animation-duration: ${12 + Math.random() * 18}s;\n        animation-delay: ${Math.random() * 12}s;\n      `;\n      container.appendChild(p);\n    }\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47768270307493,"sku":"7397150_16039","price":18264.45,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47768270340261,"sku":"7397150_16045","price":18264.45,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47768270373029,"sku":"7397150_15700","price":18264.45,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_Apr_28_2026_04_04_58_PM.png?v=1777416573"},{"product_id":"urban-signal","title":"Urban Signal — Black \u0026 White Architectural Wall Art","description":"\u003c!-- KASIAN ART STUDIO — Urban Signal — Shopify Product Description --\u003e\n\u003c!-- Paste into Shopify \u003e Products \u003e Description \u003e Show HTML (\u003c\u003e) --\u003e\n\n\u003cstyle\u003e\n.us3-wrap {\n  font-family: Georgia, 'Times New Roman', serif;\n  color: #1a1a1a;\n  max-width: 100%;\n  line-height: 1.7;\n}\n.us3-wrap * { box-sizing: border-box; }\n.us3-wrap h1,.us3-wrap h2,.us3-wrap h3,\n.us3-wrap p,.us3-wrap ul,.us3-wrap li { margin: 0; padding: 0; }\n\n\/* ── HERO ── *\/\n.us3-hero {\n  background: #0a0a0a;\n  padding: 64px 44px 56px;\n  text-align: center;\n  border-bottom: 1px solid #1e1e1e;\n  position: relative;\n  overflow: hidden;\n}\n\/* Subtle architectural grid — echoes the composition's geometry *\/\n.us3-hero::before {\n  content: '';\n  position: absolute; inset: 0;\n  background-image:\n    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),\n    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);\n  background-size: 42px 42px;\n  pointer-events: none;\n}\n.us3-hero::after {\n  content: '';\n  position: absolute; inset: 0;\n  background: radial-gradient(ellipse at center, rgba(10,10,10,0) 20%, rgba(10,10,10,0.75) 100%);\n  pointer-events: none;\n}\n.us3-tag {\n  display: inline-block;\n  font-size: 10px;\n  letter-spacing: 0.34em;\n  text-transform: uppercase;\n  color: #787878;\n  border: 1px solid #282828;\n  padding: 6px 20px;\n  margin-bottom: 26px;\n  position: relative; z-index: 1;\n}\n.us3-hero h1 {\n  font-family: Georgia, serif;\n  font-size: clamp(2.6rem, 7vw, 5rem);\n  font-weight: 400;\n  color: #f2f0ed;\n  line-height: 1.0;\n  letter-spacing: 0.1em;\n  text-transform: uppercase;\n  margin-bottom: 8px;\n  position: relative; z-index: 1;\n}\n.us3-hero-rule {\n  display: block;\n  width: 44px; height: 1px;\n  background: #505050;\n  margin: 0 auto 16px;\n  position: relative; z-index: 1;\n}\n.us3-hero-sub {\n  font-style: italic;\n  font-size: clamp(0.88rem, 1.8vw, 1.05rem);\n  color: #686868;\n  display: block;\n  margin-bottom: 24px;\n  position: relative; z-index: 1;\n}\n.us3-tagline {\n  font-size: 10px;\n  letter-spacing: 0.3em;\n  text-transform: uppercase;\n  color: #383838;\n  position: relative; z-index: 1;\n}\n.us3-tagline span { color: #565656; margin: 0 7px; }\n\n\/* ── SHORT DESC ── *\/\n.us3-short {\n  background: #f5f5f3;\n  border-left: 3px solid #606060;\n  padding: 26px 32px;\n}\n.us3-short p {\n  font-style: italic;\n  font-size: 1.04rem;\n  color: #2a2a2a;\n  line-height: 1.8;\n}\n\n\/* ── LABEL ── *\/\n.us3-label {\n  font-size: 10px;\n  letter-spacing: 0.32em;\n  text-transform: uppercase;\n  color: #727272;\n  display: flex;\n  align-items: center;\n  gap: 13px;\n  margin-bottom: 20px;\n}\n.us3-label::before {\n  content: '';\n  display: inline-block;\n  width: 22px; height: 1px;\n  background: #727272;\n  flex-shrink: 0;\n}\n\n\/* ── DIVIDER ── *\/\n.us3-divider {\n  display: flex; align-items: center; gap: 14px;\n  margin: 12px 0 34px;\n}\n.us3-divider-line { flex: 1; height: 1px; background: #e0e0dc; }\n.us3-divider-dot { width: 4px; height: 4px; background: #727272; border-radius: 50%; flex-shrink: 0; }\n\n\/* ── SECTIONS ── *\/\n.us3-section      { padding: 42px 44px; background: #fff; }\n.us3-section-warm { padding: 42px 44px; background: #f5f5f3; }\n\n\/* ── DETAILS GRID ── *\/\n.us3-details {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  gap: 1px;\n  background: #e0e0dc;\n  border: 1px solid #e0e0dc;\n}\n.us3-dc { background: #fff; padding: 15px 20px; display: flex; flex-direction: column; gap: 4px; }\n.us3-dl { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: #b4b4b0; }\n.us3-dv { font-size: 0.88rem; color: #1e1e1e; font-style: italic; }\n\n\/* ── CANVAS SPEC ── *\/\n.us3-spec {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  gap: 1px;\n  background: #e0e0dc;\n  border: 1px solid #e0e0dc;\n  margin-top: 22px;\n}\n.us3-sc { background: #f5f5f3; padding: 16px 18px; display: flex; flex-direction: column; gap: 5px; }\n.us3-sl { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #aaa; }\n.us3-sv { font-size: 0.84rem; color: #2a2a2a; line-height: 1.5; }\n\n\/* ── BODY ── *\/\n.us3-body p {\n  font-size: 0.97rem;\n  line-height: 1.9;\n  color: #2e2e2e;\n  margin-bottom: 18px;\n}\n.us3-body p:last-child { margin-bottom: 0; }\n\n\/* ── PULL QUOTE ── *\/\n.us3-quote {\n  border-left: 2px solid #606060;\n  padding: 6px 22px;\n  margin: 28px 0;\n  background: #f5f5f3;\n}\n.us3-quote p {\n  font-style: italic;\n  font-size: 1.12rem;\n  color: #1e1e1e;\n  line-height: 1.55;\n}\n\n\/* ── BACKSTORY ── *\/\n.us3-backstory {\n  padding: 52px 44px;\n  background: #080808;\n  border-top: 1px solid #1c1c1c;\n  border-bottom: 1px solid #1c1c1c;\n  position: relative; overflow: hidden;\n}\n.us3-backstory::before {\n  content: '';\n  position: absolute; inset: 0;\n  background-image:\n    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),\n    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);\n  background-size: 48px 48px;\n  pointer-events: none;\n}\n.us3-backstory .us3-label { color: #404040; position: relative; z-index: 1; }\n.us3-backstory .us3-label::before { background: #404040; }\n.us3-backstory h2 {\n  font-family: Georgia, serif;\n  font-size: clamp(1.3rem, 3vw, 1.9rem);\n  font-weight: 400; font-style: italic;\n  color: #e8e4dc;\n  margin-bottom: 26px; line-height: 1.3;\n  position: relative; z-index: 1;\n}\n.us3-backstory p {\n  font-size: 0.93rem;\n  line-height: 1.9;\n  color: #686868;\n  margin-bottom: 16px;\n  position: relative; z-index: 1;\n}\n.us3-backstory p:last-child { margin-bottom: 0; }\n\n\/* ── VIDEO ── *\/\n.us3-video {\n  background: #0d0d0d;\n  padding: 46px 44px;\n  text-align: center;\n  border-bottom: 1px solid #1c1c1c;\n}\n.us3-video .us3-label { justify-content: center; margin-bottom: 12px; }\n.us3-video .us3-label::before { display: none; }\n.us3-video-title { display: block; font-family: Georgia, serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 400; color: #e8e4dc; margin-bottom: 8px; }\n.us3-video-sub { display: block; font-style: italic; font-size: 0.87rem; color: #484848; margin-bottom: 28px; }\n.us3-video-thumb {\n  display: block; position: relative;\n  max-width: 340px; margin: 0 auto; text-decoration: none;\n}\n.us3-video-thumb img {\n  width: 100%; display: block;\n  border: 1px solid #282828;\n  filter: grayscale(25%) contrast(1.05);\n}\n.us3-play {\n  position: absolute; top: 50%; left: 50%;\n  transform: translate(-50%, -50%);\n  width: 62px; height: 62px;\n  background: rgba(8,8,8,0.88);\n  border: 1px solid #727272; border-radius: 50%;\n  display: flex; align-items: center; justify-content: center;\n}\n.us3-play svg { width: 20px; height: 20px; fill: #a0a0a0; margin-left: 4px; }\n.us3-video-cap { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #383838; margin-top: 16px; }\n\n\/* ── FEATURES ── *\/\n.us3-features {\n  display: grid; grid-template-columns: repeat(3,1fr);\n  gap: 1px; background: #e0e0dc; border: 1px solid #e0e0dc;\n}\n.us3-feat { background: #fff; padding: 30px 24px; }\n.us3-feat-num { display: block; font-family: Georgia, serif; font-size: 1.9rem; color: #e4e4e0; line-height: 1; margin-bottom: 12px; }\n.us3-feat h3 { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #727272; margin-bottom: 10px; font-weight: 400; }\n.us3-feat p { font-size: 0.83rem; line-height: 1.72; color: #585858; }\n\n\/* ── STATS ── *\/\n.us3-stats {\n  display: grid; grid-template-columns: repeat(4,1fr);\n  gap: 1px; background: #1c1c1c;\n}\n.us3-stat { background: #0a0a0a; padding: 34px 14px; text-align: center; }\n.us3-stat-num { display: block; font-family: Georgia, serif; font-size: 2.1rem; color: #787878; line-height: 1; margin-bottom: 9px; }\n.us3-stat-lbl { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #383838; margin-bottom: 5px; }\n.us3-stat-desc { font-size: 0.7rem; font-style: italic; color: #585858; }\n\n\/* ── PAIRINGS ── *\/\n.us3-pairings {\n  display: grid; grid-template-columns: 1fr 1fr;\n  gap: 1px; background: #e0e0dc; border: 1px solid #e0e0dc;\n}\n.us3-pair { background: #f5f5f3; padding: 30px 26px; }\n.us3-pair h3 { font-family: Georgia, serif; font-size: 1.02rem; font-weight: 400; color: #1e1e1e; margin-bottom: 9px; }\n.us3-pair p { font-size: 0.83rem; line-height: 1.72; color: #585858; margin-bottom: 13px; }\n.us3-pair a { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #727272; text-decoration: none; }\n\n\/* ── SPACES ── *\/\n.us3-spaces { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }\n.us3-spaces li { background: #f5f5f3; padding: 13px 22px; font-style: italic; font-size: 0.89rem; color: #4a4a4a; border-left: 2px solid #e0e0dc; }\n\n\/* ── PAIRS WELL ── *\/\n.us3-pairs-grid {\n  display: grid; grid-template-columns: 1fr 1fr;\n  gap: 1px; background: #e0e0dc; border: 1px solid #e0e0dc;\n}\n.us3-pairs-cell { background: #fff; padding: 13px 18px; font-style: italic; font-size: 0.85rem; color: #585858; }\n\n\/* ── BRANDS ── *\/\n.us3-brands { padding: 30px 44px; background: #080808; text-align: center; border-top: 1px solid #1c1c1c; }\n.us3-brands-lbl { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: #383838; margin-bottom: 18px; }\n.us3-brands-row { display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap; }\n.us3-brands-row span { font-family: Georgia, serif; font-size: 0.76rem; letter-spacing: 0.1em; color: #3c3c3c; }\n\n\/* ── CTA ── *\/\n.us3-cta { background: #0a0a0a; padding: 56px 44px; text-align: center; border-top: 1px solid #1c1c1c; }\n.us3-cta h2 { font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; color: #f2f0ed; margin-bottom: 10px; }\n.us3-cta p { font-style: italic; font-size: 0.9rem; color: #585858; margin-bottom: 28px; }\n.us3-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }\n.us3-btn { display: inline-block; background: #787878; color: #fff; font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; }\n.us3-btn-ghost { display: inline-block; background: transparent; color: #585858; font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; border: 1px solid #282828; }\n\n\/* ── RESPONSIVE ── *\/\n@media (max-width: 600px) {\n  .us3-hero,.us3-section,.us3-section-warm,\n  .us3-backstory,.us3-video,.us3-brands,.us3-cta { padding: 32px 18px; }\n  .us3-short { padding: 20px 18px; }\n  .us3-details  { grid-template-columns: 1fr; }\n  .us3-spec     { grid-template-columns: 1fr; }\n  .us3-features { grid-template-columns: 1fr; }\n  .us3-stats    { grid-template-columns: repeat(2,1fr); }\n  .us3-pairings { grid-template-columns: 1fr; }\n  .us3-pairs-grid { grid-template-columns: 1fr; }\n  .us3-brands-row { gap: 14px; }\n  .us3-cta-row  { flex-direction: column; align-items: center; }\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"us3-wrap\"\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003cdiv class=\"us3-hero\"\u003e\n    \u003cdiv class=\"us3-tag\"\u003eLimited Edition of 50\u003c\/div\u003e\n    \u003ch1\u003eUrban Signal\u003c\/h1\u003e\n    \u003cspan class=\"us3-hero-rule\"\u003e\u003c\/span\u003e\n    \u003cspan class=\"us3-hero-sub\"\u003eBlack \u0026amp; white architectural wall art\u003c\/span\u003e\n    \u003cp class=\"us3-tagline\"\u003eMoody \u003cspan\u003e·\u003c\/span\u003e Elegant \u003cspan\u003e·\u003c\/span\u003e Timeless\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESC --\u003e\n  \u003cdiv class=\"us3-short\"\u003e\n    \u003cp\u003eUrban Signal captures the quiet electricity of the city — a monochrome architectural study of signage, wires, brick, shadow, and upward movement. Designed for collectors, boutique hotels, modern residences, and hospitality interiors seeking urban restraint, graphic strength, and cinematic presence.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- DETAILS --\u003e\n  \u003cdiv class=\"us3-section\"\u003e\n    \u003cdiv class=\"us3-label\"\u003eArtwork Details\u003c\/div\u003e\n    \u003cdiv class=\"us3-details\"\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eTitle\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eUrban Signal\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eEdition\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eLimited Edition of 50\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eMedium\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eFramed canvas — collector-grade print\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003ePalette\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eBlack · White · Graphite · Urban grey\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eOrientation\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eVertical — commanding focal point\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eYear\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003e2026\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eCertification\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eSigned Certificate of Authenticity included\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-dc\"\u003e\n\u003cspan class=\"us3-dl\"\u003eStudio\u003c\/span\u003e\u003cspan class=\"us3-dv\"\u003eKasian Art Studio\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"us3-spec\"\u003e\n      \u003cdiv class=\"us3-sc\"\u003e\n\u003cspan class=\"us3-sl\"\u003eFrame\u003c\/span\u003e\u003cspan class=\"us3-sv\"\u003eStructured pine — 1.25\" floating profile\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-sc\"\u003e\n\u003cspan class=\"us3-sl\"\u003eCanvas Weight\u003c\/span\u003e\u003cspan class=\"us3-sv\"\u003e344 g\/m² · 10.15 oz\/yd² gallery fabric\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"us3-sc\"\u003e\n\u003cspan class=\"us3-sl\"\u003eConstruction\u003c\/span\u003e\u003cspan class=\"us3-sv\"\u003eOpen-back · rubber pads · hanging hardware included\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESC --\u003e\n  \u003cdiv class=\"us3-section\" style=\"padding-top:0;\"\u003e\n    \u003cdiv class=\"us3-divider\"\u003e\n\u003cdiv class=\"us3-divider-line\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"us3-divider-dot\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"us3-divider-line\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n    \u003cdiv class=\"us3-label\"\u003eThe Work\u003c\/div\u003e\n    \u003cdiv class=\"us3-body\"\u003e\n      \u003cp\u003eUrban Signal is a study in vertical tension, urban architecture, and the quiet poetry of overlooked city forms. A utility pole rises through the composition like a sculptural column, intersected by power lines, brickwork, and a bold suspended sign spelling ART — a direct yet deeply atmospheric statement on place, language, and the presence of creativity in the built environment.\u003c\/p\u003e\n\n      \u003cdiv class=\"us3-quote\"\u003e\n        \u003cp\u003e\"The city becomes less a location and more a language — structured, layered, imperfect, and alive.\"\u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cp\u003eRendered in a restrained black, white, and gray palette, the piece carries the mood of a city observed from below: raw, architectural, unsentimental, and quietly elegant. The composition feels both documentary and abstract, balancing street-level realism with gallery-grade minimalism.\u003c\/p\u003e\n      \u003cp\u003eThis work is especially suited for boutique hotel lobbies, executive offices, urban penthouses, luxury residential corridors, and modern hospitality environments. Its vertical format creates a commanding focal point, while its monochrome palette integrates seamlessly with stone, plaster, concrete, black metal, oak, walnut, leather, and marble interiors.\u003c\/p\u003e\n      \u003cp\u003eUrban Signal is not decorative filler. It is a visual statement — restrained, graphic, and architectural — created for spaces that value atmosphere, scale, and quiet cultural confidence.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BACKSTORY --\u003e\n  \u003cdiv class=\"us3-backstory\"\u003e\n    \u003cdiv class=\"us3-label\"\u003eCinematic Origin\u003c\/div\u003e\n    \u003ch2\u003eThere are cities that announce themselves through towers. Then there are the quieter signals.\u003c\/h2\u003e\n    \u003cp\u003eUrban Signal was created from that tension. The composition looks upward — not toward grandeur, but toward evidence. A sign spelling ART hangs against the hard geometry of the street. It is direct, almost severe, yet softened by atmosphere, pale light, and the surrounding network of wires.\u003c\/p\u003e\n    \u003cp\u003eThe signs, poles, wires, shadows, bricks, and fragments that hold the real memory of a place. The city becomes less a location and more a language — structured, layered, imperfect, and alive.\u003c\/p\u003e\n    \u003cp\u003eThis piece belongs to interiors that understand restraint. It does not ask for ornament. It holds its place with quiet confidence, transforming an ordinary street view into an architectural meditation on presence, creativity, and urban permanence.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- VIDEO --\u003e\n  \u003cdiv class=\"us3-video\"\u003e\n    \u003cdiv class=\"us3-label\"\u003eStudio Film\u003c\/div\u003e\n    \u003cspan class=\"us3-video-title\"\u003eUrban Signal — Art Film\u003c\/span\u003e\n    \u003cspan class=\"us3-video-sub\"\u003eLuxury black \u0026amp; white architectural art in motion\u003c\/span\u003e\n    \u003ca class=\"us3-video-thumb\" href=\"https:\/\/youtu.be\/AdYeXavlPQo\" target=\"_blank\" rel=\"noopener\"\u003e\n      \u003cimg src=\"https:\/\/img.youtube.com\/vi\/AdYeXavlPQo\/hqdefault.jpg\" alt=\"Urban Signal — Kasian Art Studio art film\"\u003e\n      \u003cdiv class=\"us3-play\"\u003e\n        \u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M8 5v14l11-7z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n    \u003c\/a\u003e\n    \u003cspan class=\"us3-video-cap\"\u003eTap to watch on YouTube\u003c\/span\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES --\u003e\n  \u003cdiv class=\"us3-section\"\u003e\n    \u003cdiv class=\"us3-label\"\u003eMuseum-Grade Standards\u003c\/div\u003e\n    \u003cdiv class=\"us3-features\"\u003e\n      \u003cdiv class=\"us3-feat\"\u003e\n        \u003cspan class=\"us3-feat-num\"\u003eI.\u003c\/span\u003e\n        \u003ch3\u003eStrictly Limited\u003c\/h3\u003e\n        \u003cp\u003eOnly 50 editions exist. Each individually numbered, certified, and archived. Once the edition closes, it is permanently closed. Collectors acquire not just art — but cultural scarcity.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"us3-feat\"\u003e\n        \u003cspan class=\"us3-feat-num\"\u003eII.\u003c\/span\u003e\n        \u003ch3\u003eGallery Construction\u003c\/h3\u003e\n        \u003cp\u003eStructured pine floating frame at 1.25\" depth. Gallery-weight canvas at 344 g\/m². Open-back construction with rubber corner pads and hanging hardware — arrives ready to install.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"us3-feat\"\u003e\n        \u003cspan class=\"us3-feat-num\"\u003eIII.\u003c\/span\u003e\n        \u003ch3\u003eCollector Provenance\u003c\/h3\u003e\n        \u003cp\u003eEach edition ships with a signed Certificate of Authenticity from Kasian Art Studio, registered in the studio archive — an unbroken chain of provenance from creation to collection.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- STATS --\u003e\n  \u003cdiv class=\"us3-stats\"\u003e\n    \u003cdiv class=\"us3-stat\"\u003e\n      \u003cspan class=\"us3-stat-num\"\u003e50\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-lbl\"\u003eTotal Editions\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-desc\"\u003eFinite — permanently closed when sold\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"us3-stat\"\u003e\n      \u003cspan class=\"us3-stat-num\"\u003e1.25\"\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-lbl\"\u003eFrame Depth\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-desc\"\u003eFloating profile — architectural wall presence\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"us3-stat\"\u003e\n      \u003cspan class=\"us3-stat-num\"\u003e2026\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-lbl\"\u003eRelease Year\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-desc\"\u003eCurrent Kasian Art Studio archive\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"us3-stat\"\u003e\n      \u003cspan class=\"us3-stat-num\"\u003e∞\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-lbl\"\u003ePresence\u003c\/span\u003e\n      \u003cspan class=\"us3-stat-desc\"\u003eQuiet authority — holds without ornament\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003cdiv class=\"us3-section-warm\"\u003e\n    \u003cdiv class=\"us3-label\"\u003eCurated Pairings\u003c\/div\u003e\n    \u003cdiv class=\"us3-pairings\"\u003e\n      \u003cdiv class=\"us3-pair\"\u003e\n        \u003ch3\u003eAbandoned Line I\u003c\/h3\u003e\n        \u003cp\u003eA companion monochrome study in urban silence and object memory — a rotary telephone rendered with the same cinematic restraint. Together they form a diptych of city atmosphere and cultural stillness for collector walls and hospitality corridors.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"us3-pair\"\u003e\n        \u003ch3\u003eArchitectural Study — Monochrome I\u003c\/h3\u003e\n        \u003cp\u003eA pure abstraction in black and graphite that extends the tonal language of Urban Signal into non-representational form — ideal where architectural photography and abstract monochrome share a wall in deliberate dialogue.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- IDEAL SPACES --\u003e\n  \u003cdiv class=\"us3-section\"\u003e\n    \u003cdiv class=\"us3-label\"\u003eIdeal Environments\u003c\/div\u003e\n    \u003cul class=\"us3-spaces\"\u003e\n      \u003cli\u003eBoutique Hotel Lobbies \u0026amp; Executive Corridors\u003c\/li\u003e\n      \u003cli\u003eUrban Penthouses \u0026amp; Modern Loft Residences\u003c\/li\u003e\n      \u003cli\u003eExecutive Offices \u0026amp; Private Collection Spaces\u003c\/li\u003e\n      \u003cli\u003eLuxury Residential Corridors \u0026amp; Entry Halls\u003c\/li\u003e\n      \u003cli\u003eModern Gallery Walls \u0026amp; Collector Interiors\u003c\/li\u003e\n      \u003cli\u003eIndustrial-Luxury \u0026amp; Concrete Architectural Spaces\u003c\/li\u003e\n      \u003cli\u003eHospitality Design \u0026amp; Hotel Suite Installations\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRS WELL WITH --\u003e\n  \u003cdiv class=\"us3-section-warm\"\u003e\n    \u003cdiv class=\"us3-label\"\u003ePairs Well With\u003c\/div\u003e\n    \u003cdiv class=\"us3-pairs-grid\"\u003e\n      \u003cdiv class=\"us3-pairs-cell\"\u003eBlack marble consoles \u0026amp; travertine entry tables\u003c\/div\u003e\n      \u003cdiv class=\"us3-pairs-cell\"\u003eCharcoal plaster walls \u0026amp; walnut panelling\u003c\/div\u003e\n      \u003cdiv class=\"us3-pairs-cell\"\u003eBlackened steel architecture \u0026amp; leather lounge seating\u003c\/div\u003e\n      \u003cdiv class=\"us3-pairs-cell\"\u003eConcrete floors \u0026amp; urban loft spaces\u003c\/div\u003e\n      \u003cdiv class=\"us3-pairs-cell\"\u003eMonochrome photography walls \u0026amp; minimalist corridors\u003c\/div\u003e\n      \u003cdiv class=\"us3-pairs-cell\"\u003eStone \u0026amp; bronze accents with warm gallery lighting\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BRANDS --\u003e\n  \u003cdiv class=\"us3-brands\"\u003e\n    \u003cspan class=\"us3-brands-lbl\"\u003ePositioned for distinguished hospitality collections\u003c\/span\u003e\n    \u003cdiv class=\"us3-brands-row\"\u003e\n      \u003cspan\u003eAman\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eFour Seasons\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eSt. Regis\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRosewood\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CTA --\u003e\n  \u003cdiv class=\"us3-cta\"\u003e\n    \u003ch2\u003eAcquire Your Edition\u003c\/h2\u003e\n    \u003cp\u003e50 editions. Each numbered, certified, and delivered with full provenance documentation.\u003c\/p\u003e\n    \u003cdiv class=\"us3-cta-row\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Urban%20Signal\" class=\"us3-btn\"\u003eInquire to Acquire\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"us3-btn-ghost\"\u003eBrowse All Works\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003c!-- END KASIAN ART STUDIO — Urban Signal --\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47796009926821,"sku":"1127075_16039","price":6785.0,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47796009959589,"sku":"1127075_16045","price":6785.0,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47796009992357,"sku":"1127075_15700","price":6785.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_May_4_2026_01_02_33_PM.png?v=1777927893"},{"product_id":"noir-composition","title":"Noir Composition — Black \u0026 Gold 3D Abstract Art","description":"\u003c!-- KASIAN ART STUDIO — Noir Composition — Shopify Product Description --\u003e\n\u003c!-- Paste into Shopify \u003e Products \u003e Description \u003e Show HTML (\u003c\u003e) --\u003e\n\n\u003cstyle\u003e\n.nc-wrap {\n  font-family: Georgia, 'Times New Roman', serif;\n  color: #1a1810;\n  max-width: 100%;\n  line-height: 1.7;\n}\n.nc-wrap * { box-sizing: border-box; }\n.nc-wrap h1,.nc-wrap h2,.nc-wrap h3,\n.nc-wrap p,.nc-wrap ul,.nc-wrap li { margin: 0; padding: 0; }\n\n\/* ── HERO ── *\/\n.nc-hero {\n  background: #080806;\n  padding: 64px 44px 58px;\n  text-align: center;\n  border-bottom: 1px solid #2a2210;\n  position: relative;\n  overflow: hidden;\n}\n\/* Gold shimmer radial — anchored top-right, echoes artwork's gold zones *\/\n.nc-hero::before {\n  content: '';\n  position: absolute; inset: 0;\n  background:\n    radial-gradient(ellipse at 70% 20%, rgba(196,158,60,0.14) 0%, transparent 55%),\n    radial-gradient(ellipse at 25% 80%, rgba(160,120,40,0.07) 0%, transparent 45%);\n  pointer-events: none;\n}\n\/* Fine vertical lines — architecture\/texture feel *\/\n.nc-hero::after {\n  content: '';\n  position: absolute; inset: 0;\n  background-image: repeating-linear-gradient(\n    90deg,\n    transparent 0px,\n    transparent 47px,\n    rgba(196,158,60,0.03) 47px,\n    rgba(196,158,60,0.03) 48px\n  );\n  pointer-events: none;\n}\n.nc-tag {\n  display: inline-block;\n  font-size: 10px;\n  letter-spacing: 0.34em;\n  text-transform: uppercase;\n  color: #9a7c3a;\n  border: 1px solid #2e2410;\n  padding: 6px 20px;\n  margin-bottom: 26px;\n  position: relative; z-index: 1;\n}\n.nc-hero h1 {\n  font-family: Georgia, serif;\n  font-size: clamp(2.4rem, 6.5vw, 4.8rem);\n  font-weight: 400;\n  color: #f0e8d4;\n  line-height: 1.0;\n  letter-spacing: 0.06em;\n  margin-bottom: 10px;\n  position: relative; z-index: 1;\n}\n.nc-hero-rule {\n  display: block;\n  width: 44px; height: 1px;\n  background: linear-gradient(90deg, transparent, #c49e3c, transparent);\n  margin: 0 auto 18px;\n  position: relative; z-index: 1;\n}\n.nc-hero-sub {\n  font-style: italic;\n  font-size: clamp(0.88rem, 1.8vw, 1.08rem);\n  color: #7a6a3a;\n  display: block;\n  margin-bottom: 24px;\n  position: relative; z-index: 1;\n}\n.nc-tagline {\n  font-size: 10px;\n  letter-spacing: 0.3em;\n  text-transform: uppercase;\n  color: #3e3018;\n  position: relative; z-index: 1;\n}\n.nc-tagline span { color: #6a5828; margin: 0 7px; }\n\n\/* ── SHORT DESC ── *\/\n.nc-short {\n  background: #f8f4ec;\n  border-left: 3px solid #b8922e;\n  padding: 26px 32px;\n}\n.nc-short p {\n  font-style: italic;\n  font-size: 1.04rem;\n  color: #2a2010;\n  line-height: 1.8;\n}\n\n\/* ── LABEL ── *\/\n.nc-label {\n  font-size: 10px;\n  letter-spacing: 0.32em;\n  text-transform: uppercase;\n  color: #b8922e;\n  display: flex;\n  align-items: center;\n  gap: 13px;\n  margin-bottom: 20px;\n}\n.nc-label::before {\n  content: '';\n  display: inline-block;\n  width: 22px; height: 1px;\n  background: #b8922e;\n  flex-shrink: 0;\n}\n\n\/* ── DIVIDER ── *\/\n.nc-divider {\n  display: flex; align-items: center; gap: 14px;\n  margin: 12px 0 34px;\n}\n.nc-divider-line { flex: 1; height: 1px; background: #e8dcc8; }\n.nc-divider-dot { width: 4px; height: 4px; background: #b8922e; border-radius: 50%; flex-shrink: 0; }\n\n\/* ── SECTIONS ── *\/\n.nc-section      { padding: 42px 44px; background: #fff; }\n.nc-section-warm { padding: 42px 44px; background: #f8f4ec; }\n\n\/* ── DETAILS GRID ── *\/\n.nc-details {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  gap: 1px;\n  background: #e8dcc8;\n  border: 1px solid #e8dcc8;\n}\n.nc-dc { background: #fff; padding: 15px 20px; display: flex; flex-direction: column; gap: 4px; }\n.nc-dl { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: #c8b88a; }\n.nc-dv { font-size: 0.88rem; color: #1e1808; font-style: italic; }\n\n\/* ── CANVAS SPEC ── *\/\n.nc-spec {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  gap: 1px;\n  background: #e8dcc8;\n  border: 1px solid #e8dcc8;\n  margin-top: 22px;\n}\n.nc-sc { background: #f8f4ec; padding: 16px 18px; display: flex; flex-direction: column; gap: 5px; }\n.nc-sl { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #c0a870; }\n.nc-sv { font-size: 0.84rem; color: #2a2010; line-height: 1.5; }\n\n\/* ── BODY ── *\/\n.nc-body p {\n  font-size: 0.97rem;\n  line-height: 1.9;\n  color: #2a2010;\n  margin-bottom: 18px;\n}\n.nc-body p:last-child { margin-bottom: 0; }\n\n\/* ── PULL QUOTE ── *\/\n.nc-quote {\n  border-left: 2px solid #b8922e;\n  padding: 6px 22px;\n  margin: 28px 0;\n  background: #f8f4ec;\n}\n.nc-quote p {\n  font-style: italic;\n  font-size: 1.12rem;\n  color: #1e1808;\n  line-height: 1.55;\n}\n\n\/* ── BACKSTORY ── *\/\n.nc-backstory {\n  padding: 52px 44px;\n  background: #060504;\n  border-top: 1px solid #221808;\n  border-bottom: 1px solid #221808;\n  position: relative; overflow: hidden;\n}\n.nc-backstory::before {\n  content: '';\n  position: absolute; inset: 0;\n  background:\n    radial-gradient(ellipse at 80% 20%, rgba(196,158,60,0.1) 0%, transparent 50%),\n    radial-gradient(ellipse at 15% 85%, rgba(160,120,40,0.06) 0%, transparent 45%);\n  pointer-events: none;\n}\n.nc-backstory .nc-label { color: #6a5020; position: relative; z-index: 1; }\n.nc-backstory .nc-label::before { background: #6a5020; }\n.nc-backstory h2 {\n  font-family: Georgia, serif;\n  font-size: clamp(1.4rem, 3vw, 2rem);\n  font-weight: 400; font-style: italic;\n  color: #e8dab0;\n  margin-bottom: 26px; line-height: 1.28;\n  position: relative; z-index: 1;\n}\n.nc-backstory p {\n  font-size: 0.93rem;\n  line-height: 1.9;\n  color: #7a6840;\n  margin-bottom: 16px;\n  position: relative; z-index: 1;\n}\n.nc-backstory p:last-child { margin-bottom: 0; }\n\n\/* ── VIDEO ── *\/\n.nc-video {\n  background: #0a0806;\n  padding: 46px 44px;\n  text-align: center;\n  border-bottom: 1px solid #221808;\n}\n.nc-video .nc-label { justify-content: center; margin-bottom: 12px; }\n.nc-video .nc-label::before { display: none; }\n.nc-video-title { display: block; font-family: Georgia, serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 400; color: #e8dab0; margin-bottom: 8px; }\n.nc-video-sub { display: block; font-style: italic; font-size: 0.87rem; color: #6a5020; margin-bottom: 28px; }\n.nc-video-thumb {\n  display: block; position: relative;\n  max-width: 340px; margin: 0 auto; text-decoration: none;\n}\n.nc-video-thumb img { width: 100%; display: block; border: 1px solid #2a1e08; }\n.nc-play {\n  position: absolute; top: 50%; left: 50%;\n  transform: translate(-50%, -50%);\n  width: 62px; height: 62px;\n  background: rgba(6,5,4,0.9);\n  border: 1px solid #b8922e; border-radius: 50%;\n  display: flex; align-items: center; justify-content: center;\n}\n.nc-play svg { width: 20px; height: 20px; fill: #b8922e; margin-left: 4px; }\n.nc-video-cap { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #3e3018; margin-top: 16px; }\n\n\/* ── FEATURES ── *\/\n.nc-features {\n  display: grid; grid-template-columns: repeat(3,1fr);\n  gap: 1px; background: #e8dcc8; border: 1px solid #e8dcc8;\n}\n.nc-feat { background: #fff; padding: 30px 24px; }\n.nc-feat-num { display: block; font-family: Georgia, serif; font-size: 1.9rem; color: #e8dcc8; line-height: 1; margin-bottom: 12px; }\n.nc-feat h3 { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #b8922e; margin-bottom: 10px; font-weight: 400; }\n.nc-feat p { font-size: 0.83rem; line-height: 1.72; color: #5a4820; }\n\n\/* ── STATS ── *\/\n.nc-stats {\n  display: grid; grid-template-columns: repeat(4,1fr);\n  gap: 1px; background: #1e1408;\n}\n.nc-stat { background: #080806; padding: 34px 14px; text-align: center; }\n.nc-stat-num { display: block; font-family: Georgia, serif; font-size: 2.1rem; color: #9a7830; line-height: 1; margin-bottom: 9px; }\n.nc-stat-lbl { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #3e3018; margin-bottom: 5px; }\n.nc-stat-desc { font-size: 0.7rem; font-style: italic; color: #6a5828; }\n\n\/* ── PAIRINGS ── *\/\n.nc-pairings {\n  display: grid; grid-template-columns: 1fr 1fr;\n  gap: 1px; background: #e8dcc8; border: 1px solid #e8dcc8;\n}\n.nc-pair { background: #f8f4ec; padding: 30px 26px; }\n.nc-pair h3 { font-family: Georgia, serif; font-size: 1.02rem; font-weight: 400; color: #1e1808; margin-bottom: 9px; }\n.nc-pair p { font-size: 0.83rem; line-height: 1.72; color: #5a4820; margin-bottom: 13px; }\n.nc-pair a { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #b8922e; text-decoration: none; }\n\n\/* ── SPACES ── *\/\n.nc-spaces { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }\n.nc-spaces li { background: #f8f4ec; padding: 13px 22px; font-style: italic; font-size: 0.89rem; color: #4a3c18; border-left: 2px solid #dcc898; }\n\n\/* ── PAIRS WELL ── *\/\n.nc-pairs-grid {\n  display: grid; grid-template-columns: 1fr 1fr;\n  gap: 1px; background: #e8dcc8; border: 1px solid #e8dcc8;\n}\n.nc-pairs-cell { background: #fff; padding: 13px 18px; font-style: italic; font-size: 0.85rem; color: #5a4820; }\n\n\/* ── BRANDS ── *\/\n.nc-brands { padding: 30px 44px; background: #060504; text-align: center; border-top: 1px solid #221808; }\n.nc-brands-lbl { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: #3e3018; margin-bottom: 18px; }\n.nc-brands-row { display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap; }\n.nc-brands-row span { font-family: Georgia, serif; font-size: 0.76rem; letter-spacing: 0.1em; color: #4a3c1c; }\n\n\/* ── CTA ── *\/\n.nc-cta {\n  background: #060504;\n  padding: 58px 44px;\n  text-align: center;\n  border-top: 1px solid #221808;\n  position: relative; overflow: hidden;\n}\n.nc-cta::before {\n  content: '';\n  position: absolute; inset: 0;\n  background: radial-gradient(ellipse at center, rgba(196,158,60,0.07) 0%, transparent 65%);\n  pointer-events: none;\n}\n.nc-cta h2 { font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; color: #f0e8d4; margin-bottom: 10px; position: relative; z-index: 1; }\n.nc-cta p { font-style: italic; font-size: 0.9rem; color: #6a5828; margin-bottom: 28px; position: relative; z-index: 1; }\n.nc-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }\n.nc-btn { display: inline-block; background: #b8922e; color: #060504; font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; }\n.nc-btn-ghost { display: inline-block; background: transparent; color: #7a6030; font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; border: 1px solid #2e2010; }\n\n\/* ── RESPONSIVE ── *\/\n@media (max-width: 600px) {\n  .nc-hero,.nc-section,.nc-section-warm,\n  .nc-backstory,.nc-video,.nc-brands,.nc-cta { padding: 32px 18px; }\n  .nc-short { padding: 20px 18px; }\n  .nc-details  { grid-template-columns: 1fr; }\n  .nc-spec     { grid-template-columns: 1fr; }\n  .nc-features { grid-template-columns: 1fr; }\n  .nc-stats    { grid-template-columns: repeat(2,1fr); }\n  .nc-pairings { grid-template-columns: 1fr; }\n  .nc-pairs-grid { grid-template-columns: 1fr; }\n  .nc-brands-row { gap: 14px; }\n  .nc-cta-row  { flex-direction: column; align-items: center; }\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"nc-wrap\"\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003cdiv class=\"nc-hero\"\u003e\n    \u003cdiv class=\"nc-tag\"\u003eLimited Edition of 50\u003c\/div\u003e\n    \u003ch1\u003eNoir Composition\u003c\/h1\u003e\n    \u003cspan class=\"nc-hero-rule\"\u003e\u003c\/span\u003e\n    \u003cspan class=\"nc-hero-sub\"\u003eBlack \u0026amp; gold 3D abstract art — sculptural presence, quiet opulence\u003c\/span\u003e\n    \u003cp class=\"nc-tagline\"\u003eMoody \u003cspan\u003e·\u003c\/span\u003e Elegant \u003cspan\u003e·\u003c\/span\u003e Timeless\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESC --\u003e\n  \u003cdiv class=\"nc-short\"\u003e\n    \u003cp\u003eNoir Composition is a bold black-and-gold abstract statement piece created for luxury interiors, boutique hotels, executive residences, and collector-grade spaces. Its sculptural texture, metallic depth, and architectural geometry bring presence, drama, and quiet opulence to any refined environment.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- DETAILS --\u003e\n  \u003cdiv class=\"nc-section\"\u003e\n    \u003cdiv class=\"nc-label\"\u003eArtwork Details\u003c\/div\u003e\n    \u003cdiv class=\"nc-details\"\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eTitle\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003eNoir Composition\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eEdition\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003eLimited Edition of 50\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eMedium\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003eFramed canvas — collector-grade print\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003ePalette\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003eObsidian black · Aged gold · Metallic champagne\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eStyle\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003e3D abstract · Sculptural texture · Geometric\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eYear\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003e2026\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eCertification\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003eSigned Certificate of Authenticity included\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-dc\"\u003e\n\u003cspan class=\"nc-dl\"\u003eStudio\u003c\/span\u003e\u003cspan class=\"nc-dv\"\u003eKasian Art Studio\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"nc-spec\"\u003e\n      \u003cdiv class=\"nc-sc\"\u003e\n\u003cspan class=\"nc-sl\"\u003eFrame\u003c\/span\u003e\u003cspan class=\"nc-sv\"\u003eStructured pine — 1.25\" floating profile\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-sc\"\u003e\n\u003cspan class=\"nc-sl\"\u003eCanvas Weight\u003c\/span\u003e\u003cspan class=\"nc-sv\"\u003e344 g\/m² · 10.15 oz\/yd² gallery fabric\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"nc-sc\"\u003e\n\u003cspan class=\"nc-sl\"\u003eConstruction\u003c\/span\u003e\u003cspan class=\"nc-sv\"\u003eOpen-back · rubber pads · hanging hardware included\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESC --\u003e\n  \u003cdiv class=\"nc-section\" style=\"padding-top:0;\"\u003e\n    \u003cdiv class=\"nc-divider\"\u003e\n\u003cdiv class=\"nc-divider-line\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"nc-divider-dot\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"nc-divider-line\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n    \u003cdiv class=\"nc-label\"\u003eThe Work\u003c\/div\u003e\n    \u003cdiv class=\"nc-body\"\u003e\n      \u003cp\u003eNoir Composition is a tactile study in power, contrast, and material presence. Layers of deep black, aged gold, raised geometric forms, fractured metallic surfaces, and sculptural circular movement create a piece that feels both ancient and contemporary — like a recovered architectural fragment from a private museum wall.\u003c\/p\u003e\n\n      \u003cdiv class=\"nc-quote\"\u003e\n        \u003cp\u003e\"Gold does not need to shine loudly to command the room. Its power, here, is in restraint.\"\u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cp\u003eThe artwork balances raw texture with disciplined composition. Gold surfaces appear torn, pressed, and illuminated, while black relief elements create shadow, structure, and gravity. Curved forms soften the architectural severity, giving the piece rhythm and movement without losing its monumental stillness.\u003c\/p\u003e\n      \u003cp\u003eDesigned for luxury residences, boutique hotel lobbies, presidential suites, private offices, designer showrooms, and high-end hospitality interiors, Noir Composition commands attention without becoming decorative excess. It belongs in rooms with stone, marble, dark wood, blackened metal, leather, warm plaster, and intentional lighting.\u003c\/p\u003e\n      \u003cp\u003eThis piece is made for collectors and designers who understand texture as atmosphere — and restraint as power.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BACKSTORY --\u003e\n  \u003cdiv class=\"nc-backstory\"\u003e\n    \u003cdiv class=\"nc-label\"\u003eCinematic Origin\u003c\/div\u003e\n    \u003ch2\u003eNoir Composition feels discovered rather than made.\u003c\/h2\u003e\n    \u003cp\u003eIts surface carries the tension of architecture, erosion, gold leaf, shadow, and silence. The black forms are weighty and structural, while the gold appears fractured and illuminated — as though light has been trapped inside the surface and allowed to emerge only in certain places.\u003c\/p\u003e\n    \u003cp\u003eThere is a sense of ceremony in the composition. A black vertical column cuts through the center like a monument. Curved forms suggest movement, orbit, and rhythm. Gold fragments rise and break apart, giving the piece the atmosphere of a private artifact — something pulled from a sealed room and placed under gallery light.\u003c\/p\u003e\n    \u003cp\u003eThis work was created for interiors that need more than decoration. It brings gravity. It brings richness. It brings the quiet authority of a piece that does not ask to be noticed — it simply holds the room.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- VIDEO --\u003e\n  \u003cdiv class=\"nc-video\"\u003e\n    \u003cdiv class=\"nc-label\"\u003eStudio Film\u003c\/div\u003e\n    \u003cspan class=\"nc-video-title\"\u003eNoir Composition — Art Film\u003c\/span\u003e\n    \u003cspan class=\"nc-video-sub\"\u003eSculptural texture and metallic depth, in motion\u003c\/span\u003e\n    \u003ca class=\"nc-video-thumb\" href=\"https:\/\/youtube.com\/shorts\/EDOc29TkfNA\" target=\"_blank\" rel=\"noopener\"\u003e\n      \u003cimg src=\"https:\/\/img.youtube.com\/vi\/EDOc29TkfNA\/hqdefault.jpg\" alt=\"Noir Composition — Kasian Art Studio art film\"\u003e\n      \u003cdiv class=\"nc-play\"\u003e\n        \u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M8 5v14l11-7z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n    \u003c\/a\u003e\n    \u003cspan class=\"nc-video-cap\"\u003eTap to watch on YouTube\u003c\/span\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES --\u003e\n  \u003cdiv class=\"nc-section\"\u003e\n    \u003cdiv class=\"nc-label\"\u003eMuseum-Grade Standards\u003c\/div\u003e\n    \u003cdiv class=\"nc-features\"\u003e\n      \u003cdiv class=\"nc-feat\"\u003e\n        \u003cspan class=\"nc-feat-num\"\u003eI.\u003c\/span\u003e\n        \u003ch3\u003eStrictly Limited\u003c\/h3\u003e\n        \u003cp\u003eOnly 50 editions exist. Each individually numbered, certified, and archived. Once the edition closes, it is permanently closed. Collectors acquire not just art — but material scarcity.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"nc-feat\"\u003e\n        \u003cspan class=\"nc-feat-num\"\u003eII.\u003c\/span\u003e\n        \u003ch3\u003eGallery Construction\u003c\/h3\u003e\n        \u003cp\u003eStructured pine floating frame at 1.25\" depth. Gallery-weight canvas at 344 g\/m². Open-back construction with rubber corner pads and hanging hardware — arrives ready to install.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"nc-feat\"\u003e\n        \u003cspan class=\"nc-feat-num\"\u003eIII.\u003c\/span\u003e\n        \u003ch3\u003eCollector Provenance\u003c\/h3\u003e\n        \u003cp\u003eEach edition ships with a signed Certificate of Authenticity from Kasian Art Studio, registered in the studio archive — an unbroken chain of provenance from creation to collection.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- STATS --\u003e\n  \u003cdiv class=\"nc-stats\"\u003e\n    \u003cdiv class=\"nc-stat\"\u003e\n      \u003cspan class=\"nc-stat-num\"\u003e50\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-lbl\"\u003eTotal Editions\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-desc\"\u003eFinite — permanently closed when sold\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"nc-stat\"\u003e\n      \u003cspan class=\"nc-stat-num\"\u003e1.25\"\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-lbl\"\u003eFrame Depth\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-desc\"\u003eFloating profile — architectural wall presence\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"nc-stat\"\u003e\n      \u003cspan class=\"nc-stat-num\"\u003e2026\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-lbl\"\u003eRelease Year\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-desc\"\u003eCurrent Kasian Art Studio archive\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"nc-stat\"\u003e\n      \u003cspan class=\"nc-stat-num\"\u003e∞\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-lbl\"\u003eGravity\u003c\/span\u003e\n      \u003cspan class=\"nc-stat-desc\"\u003eIt simply holds the room\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003cdiv class=\"nc-section-warm\"\u003e\n    \u003cdiv class=\"nc-label\"\u003eCurated Pairings\u003c\/div\u003e\n    \u003cdiv class=\"nc-pairings\"\u003e\n      \u003cdiv class=\"nc-pair\"\u003e\n        \u003ch3\u003eUrban Signal\u003c\/h3\u003e\n        \u003cp\u003eA monochrome architectural study in black, white, and graphite. Where Noir Composition brings material warmth and gold, Urban Signal introduces graphic restraint — together they create a powerful tonal contrast for collector walls and executive corridors.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"nc-pair\"\u003e\n        \u003ch3\u003eGold Fragment — Study I\u003c\/h3\u003e\n        \u003cp\u003eA smaller companion piece in the same black-and-gold register — a study in isolated metallic form against deep ground. Ideal for flanking Noir Composition in a diptych arrangement across a luxury lobby or residential hallway.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- IDEAL SPACES --\u003e\n  \u003cdiv class=\"nc-section\"\u003e\n    \u003cdiv class=\"nc-label\"\u003eIdeal Environments\u003c\/div\u003e\n    \u003cul class=\"nc-spaces\"\u003e\n      \u003cli\u003eLuxury Hotel Lobbies \u0026amp; Presidential Suites\u003c\/li\u003e\n      \u003cli\u003ePenthouse Dining Rooms \u0026amp; Private Salons\u003c\/li\u003e\n      \u003cli\u003eExecutive Offices \u0026amp; Boardrooms\u003c\/li\u003e\n      \u003cli\u003eDesigner Showrooms \u0026amp; Gallery Corridors\u003c\/li\u003e\n      \u003cli\u003ePrivate Collector Galleries \u0026amp; Viewing Rooms\u003c\/li\u003e\n      \u003cli\u003eSuperyacht Salons \u0026amp; High-End Marine Interiors\u003c\/li\u003e\n      \u003cli\u003eArchitectural Stone \u0026amp; Marble Interior Environments\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRS WELL WITH --\u003e\n  \u003cdiv class=\"nc-section-warm\"\u003e\n    \u003cdiv class=\"nc-label\"\u003ePairs Well With\u003c\/div\u003e\n    \u003cdiv class=\"nc-pairs-grid\"\u003e\n      \u003cdiv class=\"nc-pairs-cell\"\u003eBlack marble consoles \u0026amp; travertine plinth tables\u003c\/div\u003e\n      \u003cdiv class=\"nc-pairs-cell\"\u003eDark walnut panelling \u0026amp; charcoal plaster walls\u003c\/div\u003e\n      \u003cdiv class=\"nc-pairs-cell\"\u003eBronze lighting fixtures \u0026amp; champagne metal accents\u003c\/div\u003e\n      \u003cdiv class=\"nc-pairs-cell\"\u003eBlack bouclé seating \u0026amp; cognac leather chairs\u003c\/div\u003e\n      \u003cdiv class=\"nc-pairs-cell\"\u003eSculptural ceramic vessels \u0026amp; architectural stone\u003c\/div\u003e\n      \u003cdiv class=\"nc-pairs-cell\"\u003eWarm gallery spotlights \u0026amp; museum-style lighting\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BRANDS --\u003e\n  \u003cdiv class=\"nc-brands\"\u003e\n    \u003cspan class=\"nc-brands-lbl\"\u003ePositioned for distinguished hospitality collections\u003c\/span\u003e\n    \u003cdiv class=\"nc-brands-row\"\u003e\n      \u003cspan\u003eAman\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eFour Seasons\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eSt. Regis\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRosewood\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CTA --\u003e\n  \u003cdiv class=\"nc-cta\"\u003e\n    \u003ch2\u003eAcquire Your Edition\u003c\/h2\u003e\n    \u003cp\u003e50 editions. Each numbered, certified, and delivered with full provenance documentation.\u003c\/p\u003e\n    \u003cdiv class=\"nc-cta-row\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Noir%20Composition\" class=\"nc-btn\"\u003eInquire to Acquire\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"nc-btn-ghost\"\u003eBrowse All Works\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003c!-- END KASIAN ART STUDIO — Noir Composition --\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47796569178277,"sku":"5583058_16039","price":10925.0,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47796569211045,"sku":"5583058_16045","price":10925.0,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47796569243813,"sku":"5583058_15700","price":10925.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_May_5_2026_10_15_35_AM.png?v=1778003351"},{"product_id":"veiled-gaze","title":"Veiled Gaze — Black \u0026 White Portrait Wall Art","description":"\u003c!-- KASIAN ART STUDIO — Veiled Gaze — Shopify Product Description --\u003e\n\u003c!-- Paste into Shopify \u003e Products \u003e Description \u003e Show HTML (\u003c\u003e) --\u003e\n\u003c!-- VIDEO: Replace YOUR_VIDEO_ID in two places with your YouTube ID --\u003e\n\n\u003cstyle\u003e\n.vg-wrap {\n  font-family: Georgia, 'Times New Roman', serif;\n  color: #1a1a1a;\n  max-width: 100%;\n  line-height: 1.7;\n}\n.vg-wrap * { box-sizing: border-box; }\n.vg-wrap h1,.vg-wrap h2,.vg-wrap h3,\n.vg-wrap p,.vg-wrap ul,.vg-wrap li { margin: 0; padding: 0; }\n\n\/* ── HERO ── *\/\n.vg-hero {\n  background: #080808;\n  padding: 64px 44px 58px;\n  text-align: center;\n  border-bottom: 1px solid #1e1e1e;\n  position: relative;\n  overflow: hidden;\n}\n\/* Soft luminous centre — echoes pale skin catching light *\/\n.vg-hero::before {\n  content: '';\n  position: absolute; inset: 0;\n  background:\n    radial-gradient(ellipse at 50% 45%, rgba(220,210,200,0.07) 0%, transparent 60%),\n    radial-gradient(ellipse at 20% 80%, rgba(180,170,160,0.03) 0%, transparent 45%);\n  pointer-events: none;\n}\n.vg-tag {\n  display: inline-block;\n  font-size: 10px;\n  letter-spacing: 0.34em;\n  text-transform: uppercase;\n  color: #787878;\n  border: 1px solid #282828;\n  padding: 6px 20px;\n  margin-bottom: 26px;\n  position: relative; z-index: 1;\n}\n.vg-hero h1 {\n  font-family: Georgia, serif;\n  font-size: clamp(2.4rem, 6.5vw, 4.8rem);\n  font-weight: 400;\n  color: #f0ede8;\n  line-height: 1.0;\n  letter-spacing: 0.04em;\n  font-style: italic;\n  margin-bottom: 10px;\n  position: relative; z-index: 1;\n}\n.vg-hero-rule {\n  display: block;\n  width: 44px; height: 1px;\n  background: #606060;\n  margin: 0 auto 18px;\n  position: relative; z-index: 1;\n}\n.vg-hero-sub {\n  font-style: italic;\n  font-size: clamp(0.88rem, 1.8vw, 1.08rem);\n  color: #686868;\n  display: block;\n  margin-bottom: 24px;\n  position: relative; z-index: 1;\n}\n.vg-tagline {\n  font-size: 10px;\n  letter-spacing: 0.3em;\n  text-transform: uppercase;\n  color: #383838;\n  position: relative; z-index: 1;\n}\n.vg-tagline span { color: #565656; margin: 0 7px; }\n\n\/* ── SHORT DESC ── *\/\n.vg-short {\n  background: #f5f5f3;\n  border-left: 3px solid #707070;\n  padding: 26px 32px;\n}\n.vg-short p {\n  font-style: italic;\n  font-size: 1.04rem;\n  color: #2a2a2a;\n  line-height: 1.8;\n}\n\n\/* ── LABEL ── *\/\n.vg-label {\n  font-size: 10px;\n  letter-spacing: 0.32em;\n  text-transform: uppercase;\n  color: #787878;\n  display: flex;\n  align-items: center;\n  gap: 13px;\n  margin-bottom: 20px;\n}\n.vg-label::before {\n  content: '';\n  display: inline-block;\n  width: 22px; height: 1px;\n  background: #787878;\n  flex-shrink: 0;\n}\n\n\/* ── DIVIDER ── *\/\n.vg-divider {\n  display: flex; align-items: center; gap: 14px;\n  margin: 12px 0 34px;\n}\n.vg-divider-line { flex: 1; height: 1px; background: #e0e0dc; }\n.vg-divider-dot { width: 4px; height: 4px; background: #787878; border-radius: 50%; flex-shrink: 0; }\n\n\/* ── SECTIONS ── *\/\n.vg-section      { padding: 42px 44px; background: #fff; }\n.vg-section-warm { padding: 42px 44px; background: #f5f5f3; }\n\n\/* ── DETAILS GRID ── *\/\n.vg-details {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  gap: 1px;\n  background: #e0e0dc;\n  border: 1px solid #e0e0dc;\n}\n.vg-dc { background: #fff; padding: 15px 20px; display: flex; flex-direction: column; gap: 4px; }\n.vg-dl { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: #b4b4b0; }\n.vg-dv { font-size: 0.88rem; color: #1e1e1e; font-style: italic; }\n\n\/* ── CANVAS SPEC ── *\/\n.vg-spec {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  gap: 1px;\n  background: #e0e0dc;\n  border: 1px solid #e0e0dc;\n  margin-top: 22px;\n}\n.vg-sc { background: #f5f5f3; padding: 16px 18px; display: flex; flex-direction: column; gap: 5px; }\n.vg-sl { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #aaa; }\n.vg-sv { font-size: 0.84rem; color: #2a2a2a; line-height: 1.5; }\n\n\/* ── BODY ── *\/\n.vg-body p {\n  font-size: 0.97rem;\n  line-height: 1.9;\n  color: #2e2e2e;\n  margin-bottom: 18px;\n}\n.vg-body p:last-child { margin-bottom: 0; }\n\n\/* ── PULL QUOTE ── *\/\n.vg-quote {\n  border-left: 2px solid #707070;\n  padding: 6px 22px;\n  margin: 28px 0;\n  background: #f5f5f3;\n}\n.vg-quote p {\n  font-style: italic;\n  font-size: 1.12rem;\n  color: #1e1e1e;\n  line-height: 1.55;\n}\n\n\/* ── BACKSTORY ── *\/\n.vg-backstory {\n  padding: 52px 44px;\n  background: #060606;\n  border-top: 1px solid #181818;\n  border-bottom: 1px solid #181818;\n  position: relative; overflow: hidden;\n}\n\/* Very soft warm glow — skin in shadow *\/\n.vg-backstory::before {\n  content: '';\n  position: absolute; inset: 0;\n  background: radial-gradient(ellipse at 40% 50%, rgba(200,190,180,0.05) 0%, transparent 60%);\n  pointer-events: none;\n}\n.vg-backstory .vg-label { color: #424242; position: relative; z-index: 1; }\n.vg-backstory .vg-label::before { background: #424242; }\n.vg-backstory h2 {\n  font-family: Georgia, serif;\n  font-size: clamp(1.3rem, 3vw, 1.9rem);\n  font-weight: 400; font-style: italic;\n  color: #e8e4dc;\n  margin-bottom: 26px; line-height: 1.3;\n  position: relative; z-index: 1;\n}\n.vg-backstory p {\n  font-size: 0.93rem;\n  line-height: 1.9;\n  color: #6a6a6a;\n  margin-bottom: 16px;\n  position: relative; z-index: 1;\n}\n.vg-backstory p:last-child { margin-bottom: 0; }\n\n\/* ── VIDEO ── *\/\n.vg-video {\n  background: #0a0a0a;\n  padding: 46px 44px;\n  text-align: center;\n  border-bottom: 1px solid #1c1c1c;\n}\n.vg-video .vg-label { justify-content: center; margin-bottom: 12px; }\n.vg-video .vg-label::before { display: none; }\n.vg-video-title { display: block; font-family: Georgia, serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 400; font-style: italic; color: #e8e4dc; margin-bottom: 8px; }\n.vg-video-sub { display: block; font-style: italic; font-size: 0.87rem; color: #484848; margin-bottom: 28px; }\n.vg-video-thumb {\n  display: block; position: relative;\n  max-width: 340px; margin: 0 auto; text-decoration: none;\n}\n.vg-video-thumb img {\n  width: 100%; display: block;\n  border: 1px solid #242424;\n  filter: grayscale(30%) contrast(1.08);\n}\n.vg-play {\n  position: absolute; top: 50%; left: 50%;\n  transform: translate(-50%, -50%);\n  width: 62px; height: 62px;\n  background: rgba(6,6,6,0.9);\n  border: 1px solid #787878; border-radius: 50%;\n  display: flex; align-items: center; justify-content: center;\n}\n.vg-play svg { width: 20px; height: 20px; fill: #a0a0a0; margin-left: 4px; }\n.vg-video-cap { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #383838; margin-top: 16px; }\n\n\/* No-image fallback *\/\n.vg-video-placeholder {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  gap: 14px;\n  max-width: 340px;\n  margin: 0 auto;\n  aspect-ratio: 9\/16;\n  background: #111;\n  border: 1px solid #242424;\n}\n.vg-video-placeholder p { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #484848; }\n\n\/* ── FEATURES ── *\/\n.vg-features {\n  display: grid; grid-template-columns: repeat(3,1fr);\n  gap: 1px; background: #e0e0dc; border: 1px solid #e0e0dc;\n}\n.vg-feat { background: #fff; padding: 30px 24px; }\n.vg-feat-num { display: block; font-family: Georgia, serif; font-size: 1.9rem; color: #e4e4e0; line-height: 1; margin-bottom: 12px; }\n.vg-feat h3 { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #787878; margin-bottom: 10px; font-weight: 400; }\n.vg-feat p { font-size: 0.83rem; line-height: 1.72; color: #585858; }\n\n\/* ── STATS ── *\/\n.vg-stats {\n  display: grid; grid-template-columns: repeat(4,1fr);\n  gap: 1px; background: #1a1a1a;\n}\n.vg-stat { background: #080808; padding: 34px 14px; text-align: center; }\n.vg-stat-num { display: block; font-family: Georgia, serif; font-size: 2.1rem; color: #787878; line-height: 1; margin-bottom: 9px; }\n.vg-stat-lbl { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #383838; margin-bottom: 5px; }\n.vg-stat-desc { font-size: 0.7rem; font-style: italic; color: #585858; }\n\n\/* ── PAIRINGS ── *\/\n.vg-pairings {\n  display: grid; grid-template-columns: 1fr 1fr;\n  gap: 1px; background: #e0e0dc; border: 1px solid #e0e0dc;\n}\n.vg-pair { background: #f5f5f3; padding: 30px 26px; }\n.vg-pair h3 { font-family: Georgia, serif; font-size: 1.02rem; font-weight: 400; color: #1e1e1e; margin-bottom: 9px; }\n.vg-pair p { font-size: 0.83rem; line-height: 1.72; color: #585858; margin-bottom: 13px; }\n.vg-pair a { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #787878; text-decoration: none; }\n\n\/* ── SPACES ── *\/\n.vg-spaces { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }\n.vg-spaces li { background: #f5f5f3; padding: 13px 22px; font-style: italic; font-size: 0.89rem; color: #4a4a4a; border-left: 2px solid #e0e0dc; }\n\n\/* ── PAIRS WELL ── *\/\n.vg-pairs-grid {\n  display: grid; grid-template-columns: 1fr 1fr;\n  gap: 1px; background: #e0e0dc; border: 1px solid #e0e0dc;\n}\n.vg-pairs-cell { background: #fff; padding: 13px 18px; font-style: italic; font-size: 0.85rem; color: #585858; }\n\n\/* ── BRANDS ── *\/\n.vg-brands { padding: 30px 44px; background: #060606; text-align: center; border-top: 1px solid #181818; }\n.vg-brands-lbl { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: #383838; margin-bottom: 18px; }\n.vg-brands-row { display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap; }\n.vg-brands-row span { font-family: Georgia, serif; font-size: 0.76rem; letter-spacing: 0.1em; color: #3c3c3c; }\n\n\/* ── CTA ── *\/\n.vg-cta {\n  background: #080808;\n  padding: 58px 44px;\n  text-align: center;\n  border-top: 1px solid #1a1a1a;\n  position: relative; overflow: hidden;\n}\n.vg-cta::before {\n  content: '';\n  position: absolute; inset: 0;\n  background: radial-gradient(ellipse at center, rgba(200,190,180,0.04) 0%, transparent 65%);\n  pointer-events: none;\n}\n.vg-cta h2 { font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; font-style: italic; color: #f0ede8; margin-bottom: 10px; position: relative; z-index: 1; }\n.vg-cta p { font-style: italic; font-size: 0.9rem; color: #585858; margin-bottom: 28px; position: relative; z-index: 1; }\n.vg-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }\n.vg-btn { display: inline-block; background: #787878; color: #fff; font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; }\n.vg-btn-ghost { display: inline-block; background: transparent; color: #585858; font-family: Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; border: 1px solid #282828; }\n\n\/* ── RESPONSIVE ── *\/\n@media (max-width: 600px) {\n  .vg-hero,.vg-section,.vg-section-warm,\n  .vg-backstory,.vg-video,.vg-brands,.vg-cta { padding: 32px 18px; }\n  .vg-short { padding: 20px 18px; }\n  .vg-details  { grid-template-columns: 1fr; }\n  .vg-spec     { grid-template-columns: 1fr; }\n  .vg-features { grid-template-columns: 1fr; }\n  .vg-stats    { grid-template-columns: repeat(2,1fr); }\n  .vg-pairings { grid-template-columns: 1fr; }\n  .vg-pairs-grid { grid-template-columns: 1fr; }\n  .vg-brands-row { gap: 14px; }\n  .vg-cta-row  { flex-direction: column; align-items: center; }\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"vg-wrap\"\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003cdiv class=\"vg-hero\"\u003e\n    \u003cdiv class=\"vg-tag\"\u003eLimited Edition of 50\u003c\/div\u003e\n    \u003ch1\u003eVeiled Gaze\u003c\/h1\u003e\n    \u003cspan class=\"vg-hero-rule\"\u003e\u003c\/span\u003e\n    \u003cspan class=\"vg-hero-sub\"\u003eBlack \u0026amp; white portrait art — shadow, silence, emotional intensity\u003c\/span\u003e\n    \u003cp class=\"vg-tagline\"\u003eMoody \u003cspan\u003e·\u003c\/span\u003e Elegant \u003cspan\u003e·\u003c\/span\u003e Timeless\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESC --\u003e\n  \u003cdiv class=\"vg-short\"\u003e\n    \u003cp\u003eVeiled Gaze is a moody black-and-white portrait artwork defined by shadow, silence, and emotional intensity. Created for luxury interiors, boutique hotel suites, private residences, galleries, and collector-grade spaces, the piece brings a cinematic human presence to the room with restrained elegance.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- DETAILS --\u003e\n  \u003cdiv class=\"vg-section\"\u003e\n    \u003cdiv class=\"vg-label\"\u003eArtwork Details\u003c\/div\u003e\n    \u003cdiv class=\"vg-details\"\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eTitle\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003eVeiled Gaze\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eEdition\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003eLimited Edition of 50\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eMedium\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003eFramed canvas — collector-grade print\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003ePalette\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003eDeep black · Graphite · Pale silver · Shadow grey\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eOrientation\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003ePortrait — close-cropped, intimate format\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eYear\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003e2026\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eCertification\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003eSigned Certificate of Authenticity included\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-dc\"\u003e\n\u003cspan class=\"vg-dl\"\u003eStudio\u003c\/span\u003e\u003cspan class=\"vg-dv\"\u003eKasian Art Studio\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"vg-spec\"\u003e\n      \u003cdiv class=\"vg-sc\"\u003e\n\u003cspan class=\"vg-sl\"\u003eFrame\u003c\/span\u003e\u003cspan class=\"vg-sv\"\u003eStructured pine — 1.25\" floating profile\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-sc\"\u003e\n\u003cspan class=\"vg-sl\"\u003eCanvas Weight\u003c\/span\u003e\u003cspan class=\"vg-sv\"\u003e344 g\/m² · 10.15 oz\/yd² gallery fabric\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"vg-sc\"\u003e\n\u003cspan class=\"vg-sl\"\u003eConstruction\u003c\/span\u003e\u003cspan class=\"vg-sv\"\u003eOpen-back · rubber pads · hanging hardware included\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESC --\u003e\n  \u003cdiv class=\"vg-section\" style=\"padding-top:0;\"\u003e\n    \u003cdiv class=\"vg-divider\"\u003e\n\u003cdiv class=\"vg-divider-line\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"vg-divider-dot\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"vg-divider-line\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n    \u003cdiv class=\"vg-label\"\u003eThe Work\u003c\/div\u003e\n    \u003cdiv class=\"vg-body\"\u003e\n      \u003cp\u003eVeiled Gaze is an intimate study of mystery, expression, and controlled emotional tension. The close-cropped composition draws the viewer into a face partially concealed by dark hair, softened shadows, pale light, and an arresting gaze that feels both distant and immediate.\u003c\/p\u003e\n\n      \u003cdiv class=\"vg-quote\"\u003e\n        \u003cp\u003e\"The eyes become the architecture of the piece — holding the composition with a stillness that feels private and powerful.\"\u003c\/p\u003e\n      \u003c\/div\u003e\n\n      \u003cp\u003eRendered in a monochrome palette, the portrait carries a cinematic quality — quiet, sensual, and enigmatic without excess. The softness of the face contrasts with the sharp graphic weight of the hair, creating a balance between vulnerability and command. The eyes hold the room with a stillness that feels private and powerful.\u003c\/p\u003e\n      \u003cp\u003eThis artwork is especially suited for luxury hotel suites, private bedrooms, intimate lounge spaces, high-end salons, collector corridors, boutique hospitality interiors, and modern residences seeking a portrait with atmosphere, restraint, and emotional gravity.\u003c\/p\u003e\n      \u003cp\u003eVeiled Gaze is not simply a portrait. It is a presence — a quiet exchange between subject and room, shadow and light, intimacy and distance.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BACKSTORY --\u003e\n  \u003cdiv class=\"vg-backstory\"\u003e\n    \u003cdiv class=\"vg-label\"\u003eCinematic Origin\u003c\/div\u003e\n    \u003ch2\u003eVeiled Gaze feels like a private moment caught before it disappears.\u003c\/h2\u003e\n    \u003cp\u003eThe face emerges from shadow with controlled stillness — not posed for spectacle, but held in a quiet state of awareness. The dark fringe falls across the forehead like a curtain, concealing and revealing at the same time. The eyes carry the emotional weight of the piece: pale, reflective, distant, and unflinching.\u003c\/p\u003e\n    \u003cp\u003eThere is no excess color. No decorative distraction. Only shadow, skin, gaze, and silence.\u003c\/p\u003e\n    \u003cp\u003eThe composition belongs to interiors that understand intimacy as luxury. It brings the atmosphere of a private suite, a collector's bedroom, a dimly lit gallery wall, or an editorial salon where portraiture is not ornamental but psychological. Veiled Gaze is about what is seen, what is withheld, and what remains impossible to fully know.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- VIDEO --\u003e\n  \u003c!-- Replace YOUR_VIDEO_ID in both places below with your YouTube ID --\u003e\n  \u003cdiv class=\"vg-video\"\u003e\n    \u003cdiv class=\"vg-label\"\u003eStudio Film\u003c\/div\u003e\n    \u003cspan class=\"vg-video-title\"\u003eVeiled Gaze — Art Film\u003c\/span\u003e\n    \u003cspan class=\"vg-video-sub\"\u003eShadow, intimacy, and cinematic restraint in motion\u003c\/span\u003e\n    \u003ca class=\"vg-video-thumb\" href=\"https:\/\/youtube.com\/shorts\/YOUR_VIDEO_ID\" target=\"_blank\" rel=\"noopener\"\u003e\n      \u003cimg src=\"https:\/\/img.youtube.com\/vi\/YOUR_VIDEO_ID\/hqdefault.jpg\" alt=\"Veiled Gaze — Kasian Art Studio\" onerror=\"this.parentElement.style.display='none'; document.getElementById('vg-vid-fallback').style.display='flex';\"\u003e\n      \u003cdiv class=\"vg-play\"\u003e\n        \u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M8 5v14l11-7z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n    \u003c\/a\u003e\n    \u003cdiv id=\"vg-vid-fallback\" class=\"vg-video-placeholder\" style=\"display:none;\"\u003e\n      \u003cdiv class=\"vg-play\" style=\"position:static;transform:none;\"\u003e\n        \u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M8 5v14l11-7z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003cp\u003eWatch on YouTube\u003c\/p\u003e\n    \u003c\/div\u003e\n    \u003cspan class=\"vg-video-cap\"\u003eTap to watch on YouTube\u003c\/span\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES --\u003e\n  \u003cdiv class=\"vg-section\"\u003e\n    \u003cdiv class=\"vg-label\"\u003eMuseum-Grade Standards\u003c\/div\u003e\n    \u003cdiv class=\"vg-features\"\u003e\n      \u003cdiv class=\"vg-feat\"\u003e\n        \u003cspan class=\"vg-feat-num\"\u003eI.\u003c\/span\u003e\n        \u003ch3\u003eStrictly Limited\u003c\/h3\u003e\n        \u003cp\u003eOnly 50 editions exist. Each individually numbered, certified, and archived. Once the edition closes, it is permanently closed. Collectors acquire not just art — but intimate scarcity.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"vg-feat\"\u003e\n        \u003cspan class=\"vg-feat-num\"\u003eII.\u003c\/span\u003e\n        \u003ch3\u003eGallery Construction\u003c\/h3\u003e\n        \u003cp\u003eStructured pine floating frame at 1.25\" depth. Gallery-weight canvas at 344 g\/m². Open-back construction with rubber corner pads and hanging hardware — arrives ready to install.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"vg-feat\"\u003e\n        \u003cspan class=\"vg-feat-num\"\u003eIII.\u003c\/span\u003e\n        \u003ch3\u003eCollector Provenance\u003c\/h3\u003e\n        \u003cp\u003eEach edition ships with a signed Certificate of Authenticity from Kasian Art Studio, registered in the studio archive — an unbroken chain of provenance from creation to collection.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- STATS --\u003e\n  \u003cdiv class=\"vg-stats\"\u003e\n    \u003cdiv class=\"vg-stat\"\u003e\n      \u003cspan class=\"vg-stat-num\"\u003e50\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-lbl\"\u003eTotal Editions\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-desc\"\u003eFinite — permanently closed when sold\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"vg-stat\"\u003e\n      \u003cspan class=\"vg-stat-num\"\u003e1.25\"\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-lbl\"\u003eFrame Depth\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-desc\"\u003eFloating profile — architectural wall presence\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"vg-stat\"\u003e\n      \u003cspan class=\"vg-stat-num\"\u003e2026\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-lbl\"\u003eRelease Year\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-desc\"\u003eCurrent Kasian Art Studio archive\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"vg-stat\"\u003e\n      \u003cspan class=\"vg-stat-num\"\u003e∞\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-lbl\"\u003ePresence\u003c\/span\u003e\n      \u003cspan class=\"vg-stat-desc\"\u003eChanges the atmosphere of the room\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003cdiv class=\"vg-section-warm\"\u003e\n    \u003cdiv class=\"vg-label\"\u003eCurated Pairings\u003c\/div\u003e\n    \u003cdiv class=\"vg-pairings\"\u003e\n      \u003cdiv class=\"vg-pair\"\u003e\n        \u003ch3\u003eTrouble, Unseen\u003c\/h3\u003e\n        \u003cp\u003eA companion monochrome portrait in controlled defiance — one eye concealed beneath a graphic band. Where Veiled Gaze withholds through shadow and hair, Trouble, Unseen withholds through text. Together they form a powerful portrait diptych of feminine mystery.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"vg-pair\"\u003e\n        \u003ch3\u003eVeiled Arrival\u003c\/h3\u003e\n        \u003cp\u003eA couture monochrome portrait defined by a sweeping hat brim and a single exposed eye — the same register of selective revelation. Paired with Veiled Gaze, the two works create a collection of feminine presence and atmospheric restraint for collector walls.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- IDEAL SPACES --\u003e\n  \u003cdiv class=\"vg-section\"\u003e\n    \u003cdiv class=\"vg-label\"\u003eIdeal Environments\u003c\/div\u003e\n    \u003cul class=\"vg-spaces\"\u003e\n      \u003cli\u003eLuxury Hotel Suites \u0026amp; Boutique Bedroom Corridors\u003c\/li\u003e\n      \u003cli\u003ePrivate Bedrooms \u0026amp; Dressing Rooms\u003c\/li\u003e\n      \u003cli\u003eHigh-End Salons \u0026amp; Intimate Lounge Spaces\u003c\/li\u003e\n      \u003cli\u003eCollector Corridors \u0026amp; Private Gallery Walls\u003c\/li\u003e\n      \u003cli\u003eRomantic Monochrome \u0026amp; Fashion-Inspired Interiors\u003c\/li\u003e\n      \u003cli\u003eEditorial Portrait Installations \u0026amp; Designer Spaces\u003c\/li\u003e\n      \u003cli\u003eModern Residences Seeking Cinematic Atmosphere\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRS WELL WITH --\u003e\n  \u003cdiv class=\"vg-section-warm\"\u003e\n    \u003cdiv class=\"vg-label\"\u003ePairs Well With\u003c\/div\u003e\n    \u003cdiv class=\"vg-pairs-grid\"\u003e\n      \u003cdiv class=\"vg-pairs-cell\"\u003eBlack marble consoles \u0026amp; ivory plaster walls\u003c\/div\u003e\n      \u003cdiv class=\"vg-pairs-cell\"\u003eCharcoal velvet seating \u0026amp; dark walnut panelling\u003c\/div\u003e\n      \u003cdiv class=\"vg-pairs-cell\"\u003eChampagne bronze lighting \u0026amp; soft linen drapery\u003c\/div\u003e\n      \u003cdiv class=\"vg-pairs-cell\"\u003eStone bedside tables \u0026amp; cinematic hallway lighting\u003c\/div\u003e\n      \u003cdiv class=\"vg-pairs-cell\"\u003eMoody black-and-white photography walls\u003c\/div\u003e\n      \u003cdiv class=\"vg-pairs-cell\"\u003eMinimalist gallery corridors \u0026amp; editorial portrait collections\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BRANDS --\u003e\n  \u003cdiv class=\"vg-brands\"\u003e\n    \u003cspan class=\"vg-brands-lbl\"\u003ePositioned for distinguished hospitality collections\u003c\/span\u003e\n    \u003cdiv class=\"vg-brands-row\"\u003e\n      \u003cspan\u003eAman\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eFour Seasons\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eSt. Regis\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRosewood\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CTA --\u003e\n  \u003cdiv class=\"vg-cta\"\u003e\n    \u003ch2\u003eAcquire Your Edition\u003c\/h2\u003e\n    \u003cp\u003e50 editions. Each numbered, certified, and delivered with full provenance documentation.\u003c\/p\u003e\n    \u003cdiv class=\"vg-cta-row\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Veiled%20Gaze\" class=\"vg-btn\"\u003eInquire to Acquire\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"vg-btn-ghost\"\u003eBrowse All Works\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003c!-- END KASIAN ART STUDIO — Veiled Gaze --\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47810404843685,"sku":"2786061_16039","price":11895.0,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47810404876453,"sku":"2786061_16045","price":11895.0,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47810404909221,"sku":"2786061_15700","price":11895.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_May_7_2026_06_22_05_PM.png?v=1778267895"},{"product_id":"tidal-veil","title":"Tidal Veil — Black \u0026 White Coastal Figure Art","description":"\u003c!-- KASIAN ART STUDIO — Tidal Veil — Shopify Product Description --\u003e\n\u003c!-- Paste into Shopify \u003e Products \u003e Description \u003e Show HTML (\u003c\u003e) --\u003e\n\n\u003cstyle\u003e\n.tv-wrap { font-family: Georgia,'Times New Roman',serif; color:#1a1a1a; max-width:100%; line-height:1.7; }\n.tv-wrap * { box-sizing:border-box; }\n.tv-wrap h1,.tv-wrap h2,.tv-wrap h3,.tv-wrap p,.tv-wrap ul,.tv-wrap li { margin:0; padding:0; }\n\n\/* HERO *\/\n.tv-hero {\n  background:#0a0a0a; padding:64px 44px 58px; text-align:center;\n  border-bottom:1px solid #1e1e1e; position:relative; overflow:hidden;\n}\n.tv-hero::before {\n  content:''; position:absolute; inset:0; pointer-events:none;\n  background:\n    radial-gradient(ellipse at 50% 30%,rgba(228,224,216,.07) 0%,transparent 55%),\n    radial-gradient(ellipse at 78% 78%,rgba(195,192,184,.03) 0%,transparent 45%);\n}\n.tv-hero::after {\n  content:''; position:absolute; inset:0; pointer-events:none;\n  background:repeating-linear-gradient(180deg,transparent 0px,transparent 36px,rgba(255,255,255,.013) 36px,rgba(255,255,255,.013) 37px);\n}\n.tv-tag {\n  display:inline-block; font-size:10px; letter-spacing:.34em; text-transform:uppercase;\n  color:#808080; border:1px solid #2a2a2a; padding:6px 20px; margin-bottom:26px;\n  position:relative; z-index:1;\n}\n.tv-hero h1 {\n  font-family:Georgia,serif; font-size:clamp(2.4rem,6.5vw,4.8rem); font-weight:400;\n  color:#edeae3; line-height:1.0; letter-spacing:.06em; font-style:italic;\n  margin-bottom:10px; position:relative; z-index:1;\n}\n.tv-rule { display:block; width:44px; height:1px; background:linear-gradient(90deg,transparent,#848480,transparent); margin:0 auto 18px; position:relative; z-index:1; }\n.tv-hero-sub { font-style:italic; font-size:clamp(.88rem,1.8vw,1.08rem); color:#686866; display:block; margin-bottom:24px; position:relative; z-index:1; }\n.tv-tagline { font-size:10px; letter-spacing:.3em; text-transform:uppercase; color:#3a3a38; position:relative; z-index:1; }\n.tv-tagline span { color:#585856; margin:0 7px; }\n\n\/* SHORT DESC *\/\n.tv-short { background:#f6f5f1; border-left:3px solid #888884; padding:26px 32px; }\n.tv-short p { font-style:italic; font-size:1.04rem; color:#2a2a28; line-height:1.8; }\n\n\/* LABEL *\/\n.tv-label { font-size:10px; letter-spacing:.32em; text-transform:uppercase; color:#888884; display:flex; align-items:center; gap:13px; margin-bottom:20px; }\n.tv-label::before { content:''; display:inline-block; width:22px; height:1px; background:#888884; flex-shrink:0; }\n\n\/* DIVIDER *\/\n.tv-divider { display:flex; align-items:center; gap:14px; margin:12px 0 34px; }\n.tv-divider-line { flex:1; height:1px; background:#e2e0d8; }\n.tv-divider-dot { width:4px; height:4px; background:#888884; border-radius:50%; flex-shrink:0; }\n\n\/* SECTIONS *\/\n.tv-section      { padding:42px 44px; background:#fff; }\n.tv-section-warm { padding:42px 44px; background:#f6f5f1; }\n\n\/* DETAILS *\/\n.tv-details { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:#e2e0d8; border:1px solid #e2e0d8; }\n.tv-dc { background:#fff; padding:15px 20px; display:flex; flex-direction:column; gap:4px; }\n.tv-dl { font-size:9px; letter-spacing:.24em; text-transform:uppercase; color:#b8b6ae; }\n.tv-dv { font-size:.88rem; color:#1e1e1c; font-style:italic; }\n\n\/* CANVAS SPEC *\/\n.tv-spec { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:#e2e0d8; border:1px solid #e2e0d8; margin-top:22px; }\n.tv-sc { background:#f6f5f1; padding:16px 18px; display:flex; flex-direction:column; gap:5px; }\n.tv-sl { font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:#aeaca6; }\n.tv-sv { font-size:.84rem; color:#2a2a28; line-height:1.5; }\n\n\/* BODY *\/\n.tv-body p { font-size:.97rem; line-height:1.9; color:#2e2e2c; margin-bottom:18px; }\n.tv-body p:last-child { margin-bottom:0; }\n\n\/* PULL QUOTE *\/\n.tv-quote { border-left:2px solid #888884; padding:6px 22px; margin:28px 0; background:#f6f5f1; }\n.tv-quote p { font-style:italic; font-size:1.12rem; color:#1e1e1c; line-height:1.55; }\n\n\/* BACKSTORY *\/\n.tv-backstory { padding:52px 44px; background:#080808; border-top:1px solid #1a1a1a; border-bottom:1px solid #1a1a1a; position:relative; overflow:hidden; }\n.tv-backstory::before {\n  content:''; position:absolute; inset:0; pointer-events:none;\n  background:\n    radial-gradient(ellipse at 28% 38%,rgba(218,215,206,.05) 0%,transparent 55%),\n    radial-gradient(ellipse at 82% 72%,rgba(175,173,164,.03) 0%,transparent 44%);\n}\n.tv-backstory .tv-label { color:#484846; position:relative; z-index:1; }\n.tv-backstory .tv-label::before { background:#484846; }\n.tv-backstory h2 { font-family:Georgia,serif; font-size:clamp(1.3rem,3vw,1.9rem); font-weight:400; font-style:italic; color:#e8e4dc; margin-bottom:26px; line-height:1.3; position:relative; z-index:1; }\n.tv-backstory p { font-size:.93rem; line-height:1.9; color:#686864; margin-bottom:16px; position:relative; z-index:1; }\n.tv-backstory p:last-child { margin-bottom:0; }\n\n\/* VIDEO *\/\n.tv-video { background:#0a0a0a; padding:46px 44px; text-align:center; border-bottom:1px solid #1a1a1a; }\n.tv-video .tv-label { justify-content:center; margin-bottom:12px; }\n.tv-video .tv-label::before { display:none; }\n.tv-video-title { display:block; font-family:Georgia,serif; font-size:clamp(1.1rem,2.5vw,1.5rem); font-weight:400; font-style:italic; color:#e8e4dc; margin-bottom:8px; }\n.tv-video-sub { display:block; font-style:italic; font-size:.87rem; color:#4a4a48; margin-bottom:28px; }\n.tv-video-thumb { display:block; position:relative; max-width:340px; margin:0 auto; text-decoration:none; }\n.tv-video-thumb img { width:100%; display:block; border:1px solid #242422; filter:grayscale(20%) contrast(1.05); }\n.tv-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:62px; height:62px; background:rgba(8,8,8,.9); border:1px solid #888884; border-radius:50%; display:flex; align-items:center; justify-content:center; }\n.tv-play svg { width:20px; height:20px; fill:#a8a6a0; margin-left:4px; }\n.tv-video-cap { display:block; font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:#3a3a38; margin-top:16px; }\n\n\/* FEATURES *\/\n.tv-features { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:#e2e0d8; border:1px solid #e2e0d8; }\n.tv-feat { background:#fff; padding:30px 24px; }\n.tv-feat-num { display:block; font-family:Georgia,serif; font-size:1.9rem; color:#e4e2da; line-height:1; margin-bottom:12px; }\n.tv-feat h3 { font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:#888884; margin-bottom:10px; font-weight:400; }\n.tv-feat p { font-size:.83rem; line-height:1.72; color:#5a5a58; }\n\n\/* STATS *\/\n.tv-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:#1c1c1a; }\n.tv-stat { background:#0a0a0a; padding:34px 14px; text-align:center; }\n.tv-stat-num { display:block; font-family:Georgia,serif; font-size:2.1rem; color:#808080; line-height:1; margin-bottom:9px; }\n.tv-stat-lbl { display:block; font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:#3a3a38; margin-bottom:5px; }\n.tv-stat-desc { font-size:.7rem; font-style:italic; color:#5a5a58; }\n\n\/* PAIRINGS *\/\n.tv-pairings { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:#e2e0d8; border:1px solid #e2e0d8; }\n.tv-pair { background:#f6f5f1; padding:30px 26px; }\n.tv-pair h3 { font-family:Georgia,serif; font-size:1.02rem; font-weight:400; color:#1e1e1c; margin-bottom:9px; }\n.tv-pair p { font-size:.83rem; line-height:1.72; color:#5a5a58; margin-bottom:13px; }\n.tv-pair a { font-size:9px; letter-spacing:.2em; text-transform:uppercase; color:#888884; text-decoration:none; }\n\n\/* SPACES *\/\n.tv-spaces { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:1px; }\n.tv-spaces li { background:#f6f5f1; padding:13px 22px; font-style:italic; font-size:.89rem; color:#4a4a48; border-left:2px solid #dbd9d1; }\n\n\/* PAIRS WELL *\/\n.tv-pairs-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:#e2e0d8; border:1px solid #e2e0d8; }\n.tv-pairs-cell { background:#fff; padding:13px 18px; font-style:italic; font-size:.85rem; color:#5a5a58; }\n\n\/* BRANDS *\/\n.tv-brands { padding:30px 44px; background:#080808; text-align:center; border-top:1px solid #1a1a1a; }\n.tv-brands-lbl { display:block; font-size:9px; letter-spacing:.32em; text-transform:uppercase; color:#3a3a38; margin-bottom:18px; }\n.tv-brands-row { display:flex; justify-content:center; align-items:center; gap:26px; flex-wrap:wrap; }\n.tv-brands-row span { font-family:Georgia,serif; font-size:.76rem; letter-spacing:.1em; color:#3e3e3c; }\n\n\/* CTA *\/\n.tv-cta { background:#0a0a0a; padding:58px 44px; text-align:center; border-top:1px solid #1c1c1a; position:relative; overflow:hidden; }\n.tv-cta::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(218,214,204,.04) 0%,transparent 65%); pointer-events:none; }\n.tv-cta h2 { font-family:Georgia,serif; font-size:clamp(1.5rem,3vw,2.1rem); font-weight:400; font-style:italic; color:#edeae3; margin-bottom:10px; position:relative; z-index:1; }\n.tv-cta p { font-style:italic; font-size:.9rem; color:#5a5a58; margin-bottom:28px; position:relative; z-index:1; }\n.tv-cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }\n.tv-btn { display:inline-block; background:#888884; color:#fff; font-family:Georgia,serif; font-size:10px; letter-spacing:.22em; text-transform:uppercase; padding:14px 36px; text-decoration:none; }\n.tv-btn-ghost { display:inline-block; background:transparent; color:#585856; font-family:Georgia,serif; font-size:10px; letter-spacing:.22em; text-transform:uppercase; padding:14px 36px; text-decoration:none; border:1px solid #2a2a28; }\n\n\/* RESPONSIVE *\/\n@media(max-width:600px){\n  .tv-hero,.tv-section,.tv-section-warm,\n  .tv-backstory,.tv-video,.tv-brands,.tv-cta { padding:32px 18px; }\n  .tv-short { padding:20px 18px; }\n  .tv-details,.tv-spec,.tv-pairs-grid { grid-template-columns:1fr; }\n  .tv-features,.tv-pairings { grid-template-columns:1fr; }\n  .tv-stats { grid-template-columns:repeat(2,1fr); }\n  .tv-brands-row { gap:14px; }\n  .tv-cta-row { flex-direction:column; align-items:center; }\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"tv-wrap\"\u003e\n\n  \u003c!-- HERO --\u003e\n  \u003cdiv class=\"tv-hero\"\u003e\n    \u003cdiv class=\"tv-tag\"\u003eLimited Edition of 50\u003c\/div\u003e\n    \u003ch1\u003eTidal Veil\u003c\/h1\u003e\n    \u003cspan class=\"tv-rule\"\u003e\u003c\/span\u003e\n    \u003cspan class=\"tv-hero-sub\"\u003eBlack \u0026amp; white coastal figure art — body, surf, shadow, stillness\u003c\/span\u003e\n    \u003cp class=\"tv-tagline\"\u003eMoody \u003cspan\u003e·\u003c\/span\u003e Elegant \u003cspan\u003e·\u003c\/span\u003e Timeless\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- SHORT DESC --\u003e\n  \u003cdiv class=\"tv-short\"\u003e\n    \u003cp\u003eTidal Veil is a moody black-and-white coastal figure artwork created for luxury interiors, boutique hotels, private residences, spa suites, and collector-grade spaces. Softly layered bodies, surfboard forms, and shadowed movement create a cinematic meditation on water, stillness, and sensual restraint.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- DETAILS --\u003e\n  \u003cdiv class=\"tv-section\"\u003e\n    \u003cdiv class=\"tv-label\"\u003eArtwork Details\u003c\/div\u003e\n    \u003cdiv class=\"tv-details\"\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eTitle\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003eTidal Veil\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eEdition\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003eLimited Edition of 50\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eMedium\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003eFramed canvas — collector-grade print\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003ePalette\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003ePale silver · Graphite · Deep black · Coastal grey\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eStyle\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003eFigurative abstraction · Coastal · Monochrome\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eYear\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003e2026\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eCertification\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003eSigned Certificate of Authenticity included\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-dc\"\u003e\n\u003cspan class=\"tv-dl\"\u003eStudio\u003c\/span\u003e\u003cspan class=\"tv-dv\"\u003eKasian Art Studio\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"tv-spec\"\u003e\n      \u003cdiv class=\"tv-sc\"\u003e\n\u003cspan class=\"tv-sl\"\u003eFrame\u003c\/span\u003e\u003cspan class=\"tv-sv\"\u003eStructured pine — 1.25\" floating profile\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-sc\"\u003e\n\u003cspan class=\"tv-sl\"\u003eCanvas Weight\u003c\/span\u003e\u003cspan class=\"tv-sv\"\u003e344 g\/m² · 10.15 oz\/yd² gallery fabric\u003c\/span\u003e\n\u003c\/div\u003e\n      \u003cdiv class=\"tv-sc\"\u003e\n\u003cspan class=\"tv-sl\"\u003eConstruction\u003c\/span\u003e\u003cspan class=\"tv-sv\"\u003eOpen-back · rubber pads · hanging hardware included\u003c\/span\u003e\n\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- LONG DESC --\u003e\n  \u003cdiv class=\"tv-section\" style=\"padding-top:0;\"\u003e\n    \u003cdiv class=\"tv-divider\"\u003e\n\u003cdiv class=\"tv-divider-line\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"tv-divider-dot\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"tv-divider-line\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n    \u003cdiv class=\"tv-label\"\u003eThe Work\u003c\/div\u003e\n    \u003cdiv class=\"tv-body\"\u003e\n      \u003cp\u003eTidal Veil is an atmospheric black-and-white composition where coastal leisure becomes something more intimate, abstract, and emotionally suspended. The piece layers fragments of seated figures, surfboard silhouettes, soft limbs, and translucent shadow into a dreamlike study of body, water, memory, and motion.\u003c\/p\u003e\n      \u003cdiv class=\"tv-quote\"\u003e\n        \u003cp\u003e\"Surf fins become sculptural forms. Pale surfaces dissolve into grey mist. The figures feel present yet distant — softened by light and shadow as though seen through salt air, glass, or memory.\"\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cp\u003eThe image carries the quiet sensuality of a private shoreline moment — not literal, but veiled. Designed for refined interiors, Tidal Veil belongs in spaces where art is expected to create atmosphere: luxury hotel suites, coastal penthouses, spa corridors, private bedrooms, superyacht salons, resort lounges, and modern collector residences.\u003c\/p\u003e\n      \u003cp\u003eIts monochrome palette pairs seamlessly with limestone, travertine, pale oak, plaster, linen, black marble, and brushed metal. This is coastal art without cliché — restrained, sensual, architectural, and quietly cinematic.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BACKSTORY --\u003e\n  \u003cdiv class=\"tv-backstory\"\u003e\n    \u003cdiv class=\"tv-label\"\u003eCinematic Origin\u003c\/div\u003e\n    \u003ch2\u003eTidal Veil feels like a memory seen through water.\u003c\/h2\u003e\n    \u003cp\u003eThe forms appear and disappear — a body seated in stillness, a surfboard suspended across the frame, curved fins rising like sculptural shadows. Nothing is fully revealed. Everything is softened by motion, haze, and the quiet pull of the tide.\u003c\/p\u003e\n    \u003cp\u003eThe piece speaks to the luxury of restraint: the elegance of what remains partially hidden, the sensuality of atmosphere rather than exposure, the silence of a coastal morning before the world becomes visible.\u003c\/p\u003e\n    \u003cp\u003eIt belongs in interiors where calm must feel intentional. A private suite. A spa corridor. A residence above the water. A room where the artwork does not interrupt the space, but deepens it. Tidal Veil is about body, sea, shadow, and the private architecture of stillness.\u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- VIDEO --\u003e\n  \u003cdiv class=\"tv-video\"\u003e\n    \u003cdiv class=\"tv-label\"\u003eStudio Film\u003c\/div\u003e\n    \u003cspan class=\"tv-video-title\"\u003eTidal Veil — Art Film\u003c\/span\u003e\n    \u003cspan class=\"tv-video-sub\"\u003eCoastal figure, shadow, and restrained sensuality in motion\u003c\/span\u003e\n    \u003ca class=\"tv-video-thumb\" href=\"https:\/\/youtu.be\/EO3-0pV-Hrc\" target=\"_blank\" rel=\"noopener\"\u003e\n      \u003cimg src=\"https:\/\/img.youtube.com\/vi\/EO3-0pV-Hrc\/hqdefault.jpg\" alt=\"Tidal Veil — Kasian Art Studio art film\"\u003e\n      \u003cdiv class=\"tv-play\"\u003e\n        \u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M8 5v14l11-7z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n    \u003c\/a\u003e\n    \u003cspan class=\"tv-video-cap\"\u003eTap to watch on YouTube\u003c\/span\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FEATURES --\u003e\n  \u003cdiv class=\"tv-section\"\u003e\n    \u003cdiv class=\"tv-label\"\u003eMuseum-Grade Standards\u003c\/div\u003e\n    \u003cdiv class=\"tv-features\"\u003e\n      \u003cdiv class=\"tv-feat\"\u003e\n        \u003cspan class=\"tv-feat-num\"\u003eI.\u003c\/span\u003e\n        \u003ch3\u003eStrictly Limited\u003c\/h3\u003e\n        \u003cp\u003eOnly 50 editions exist. Each individually numbered, certified, and archived. Once the edition closes, it is permanently closed — a singular moment of coastal stillness, finite and unrepeatable.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tv-feat\"\u003e\n        \u003cspan class=\"tv-feat-num\"\u003eII.\u003c\/span\u003e\n        \u003ch3\u003eGallery Construction\u003c\/h3\u003e\n        \u003cp\u003eStructured pine floating frame at 1.25\" depth. Gallery-weight canvas at 344 g\/m². Open-back construction with rubber corner pads and hanging hardware — arrives ready to install.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tv-feat\"\u003e\n        \u003cspan class=\"tv-feat-num\"\u003eIII.\u003c\/span\u003e\n        \u003ch3\u003eCollector Provenance\u003c\/h3\u003e\n        \u003cp\u003eEach edition ships with a signed Certificate of Authenticity from Kasian Art Studio, registered in the studio archive — an unbroken chain of provenance from creation to collection.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- STATS --\u003e\n  \u003cdiv class=\"tv-stats\"\u003e\n    \u003cdiv class=\"tv-stat\"\u003e\n      \u003cspan class=\"tv-stat-num\"\u003e50\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-lbl\"\u003eTotal Editions\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-desc\"\u003eFinite — permanently closed when sold\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"tv-stat\"\u003e\n      \u003cspan class=\"tv-stat-num\"\u003e1.25\"\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-lbl\"\u003eFrame Depth\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-desc\"\u003eFloating profile — architectural wall presence\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"tv-stat\"\u003e\n      \u003cspan class=\"tv-stat-num\"\u003e2026\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-lbl\"\u003eRelease Year\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-desc\"\u003eCurrent Kasian Art Studio archive\u003c\/span\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"tv-stat\"\u003e\n      \u003cspan class=\"tv-stat-num\"\u003e∞\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-lbl\"\u003eStillness\u003c\/span\u003e\n      \u003cspan class=\"tv-stat-desc\"\u003eDeepens the room rather than decorating it\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRINGS --\u003e\n  \u003cdiv class=\"tv-section-warm\"\u003e\n    \u003cdiv class=\"tv-label\"\u003eCurated Pairings\u003c\/div\u003e\n    \u003cdiv class=\"tv-pairings\"\u003e\n      \u003cdiv class=\"tv-pair\"\u003e\n        \u003ch3\u003eVeiled Gaze\u003c\/h3\u003e\n        \u003cp\u003eA monochrome portrait study in shadow, intimacy, and the partially withheld face. Where Tidal Veil suspends body and board in coastal abstraction, Veiled Gaze turns inward — both share the same register of quiet sensuality and emotional restraint.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tv-pair\"\u003e\n        \u003ch3\u003eShore Study — Monochrome I\u003c\/h3\u003e\n        \u003cp\u003eA companion coastal abstraction in pale silver and deep graphite — pure atmosphere without figurative content. Paired with Tidal Veil, the two create a diptych of coastal mood for spa corridors, resort suites, and collector bedrooms.\u003c\/p\u003e\n        \u003ca href=\"https:\/\/www.kasianartstudio.com\"\u003eView Work →\u003c\/a\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- IDEAL SPACES --\u003e\n  \u003cdiv class=\"tv-section\"\u003e\n    \u003cdiv class=\"tv-label\"\u003eIdeal Environments\u003c\/div\u003e\n    \u003cul class=\"tv-spaces\"\u003e\n      \u003cli\u003eLuxury Hotel Suites \u0026amp; Boutique Coastal Bedrooms\u003c\/li\u003e\n      \u003cli\u003eSpa Corridors \u0026amp; Wellness Retreat Interiors\u003c\/li\u003e\n      \u003cli\u003eCoastal Penthouses \u0026amp; Oceanfront Residences\u003c\/li\u003e\n      \u003cli\u003eSuperyacht Salons \u0026amp; Marine Luxury Interiors\u003c\/li\u003e\n      \u003cli\u003eResort Lobbies \u0026amp; Lounge Installations\u003c\/li\u003e\n      \u003cli\u003ePrivate Bedrooms \u0026amp; Collector Corridors\u003c\/li\u003e\n      \u003cli\u003eMinimalist \u0026amp; Monochrome Coastal Modern Interiors\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- PAIRS WELL WITH --\u003e\n  \u003cdiv class=\"tv-section-warm\"\u003e\n    \u003cdiv class=\"tv-label\"\u003ePairs Well With\u003c\/div\u003e\n    \u003cdiv class=\"tv-pairs-grid\"\u003e\n      \u003cdiv class=\"tv-pairs-cell\"\u003eLimestone feature walls \u0026amp; travertine consoles\u003c\/div\u003e\n      \u003cdiv class=\"tv-pairs-cell\"\u003ePale oak millwork \u0026amp; ivory bouclé seating\u003c\/div\u003e\n      \u003cdiv class=\"tv-pairs-cell\"\u003eSoft linen drapery \u0026amp; warm plaster walls\u003c\/div\u003e\n      \u003cdiv class=\"tv-pairs-cell\"\u003eBlack marble nightstands \u0026amp; curved stone benches\u003c\/div\u003e\n      \u003cdiv class=\"tv-pairs-cell\"\u003eBrushed nickel lighting \u0026amp; white orchid arrangements\u003c\/div\u003e\n      \u003cdiv class=\"tv-pairs-cell\"\u003eMonochrome photography \u0026amp; charcoal accent pillows\u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- BRANDS --\u003e\n  \u003cdiv class=\"tv-brands\"\u003e\n    \u003cspan class=\"tv-brands-lbl\"\u003ePositioned for distinguished hospitality collections\u003c\/span\u003e\n    \u003cdiv class=\"tv-brands-row\"\u003e\n      \u003cspan\u003eAman\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eFour Seasons\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eSt. Regis\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRitz-Carlton Reserve\u003c\/span\u003e\u003cspan\u003e·\u003c\/span\u003e\n      \u003cspan\u003eRosewood\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- CTA --\u003e\n  \u003cdiv class=\"tv-cta\"\u003e\n    \u003ch2\u003eAcquire Your Edition\u003c\/h2\u003e\n    \u003cp\u003e50 editions. Each numbered, certified, and delivered with full provenance documentation.\u003c\/p\u003e\n    \u003cdiv class=\"tv-cta-row\"\u003e\n      \u003ca href=\"mailto:kristina@kasianartstudio.com?subject=Acquisition%20Inquiry:%20Tidal%20Veil\" class=\"tv-btn\"\u003eInquire to Acquire\u003c\/a\u003e\n      \u003ca href=\"https:\/\/www.kasianartstudio.com\/collections\" class=\"tv-btn-ghost\"\u003eBrowse All Works\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\u003c!-- END KASIAN ART STUDIO — Tidal Veil --\u003e","brand":"Kasian Art Studio","offers":[{"title":"Black","offer_id":47841408352421,"sku":"8560586_16039","price":3258.0,"currency_code":"USD","in_stock":true},{"title":"Brown","offer_id":47841408385189,"sku":"8560586_16045","price":3258.0,"currency_code":"USD","in_stock":true},{"title":"White","offer_id":47841408417957,"sku":"8560586_15700","price":3258.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/files\/ChatGPT_Image_May_19_2026_12_38_53_PM.png?v=1779223083"}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0703\/6629\/8277\/collections\/EC2A064A-85ED-4CA7-81B4-4C77B239187D_2a6e22d4-afde-4613-a100-9a3922d55fe7.png?v=1763411926","url":"https:\/\/www.kasianartstudio.com\/collections\/black-amp-white-luxury-collection.oembed?page=4","provider":"Kasian Art Studio","version":"1.0","type":"link"}