  /* -------------------------------------------------------------
           🎨 SYSTEM VARIABLES & CORE ARCHITECTURE
           ------------------------------------------------------------- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --earth-brown: #8A5F41;
            --pure-white: #FFFFFF;
            --artistic-rose: #D6336C;
            --deep-violet: #462C7D;
            --ink-black: #1A1126;
            --canvas-tint: #FDFBF7;
            
            --font-script: "Petit Formal Script", cursive;
            --font-serif: "Playfair Display", serif;
            --font-sans: "Plus Jakarta Sans", sans-serif;
            
            --transition-dreamy: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-tactile: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-clip: clip-path 2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
            background-color:  #9cf79c;
            color: var(--ink-black);
            font-family: var(--font-sans);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
            width: 100%;
            background-color: #9cf79c;
        }

        /* -------------------------------------------------------------
           🎞 ADVANCED CINEMATIC ANIMATION ENGINE (CSS native hooks)
           ------------------------------------------------------------- */
        .reveal-hidden {
            opacity: 0;
            transform: translateY(60px);
            filter: blur(10px);
            transition: var(--transition-dreamy);
        }

        .reveal-visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .mask-clip-hidden {
            clip-path: inset(100% 0% 0% 0%);
            transition: var(--transition-clip);
        }

        .mask-clip-visible {
            clip-path: inset(0% 0% 0% 0%);
        }

        /* -------------------------------------------------------------
           🌐 FLOATING TRANSPARENT ARTISTIC HEADER
           ------------------------------------------------------------- */
        .art-floating-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 2000;
            padding: 3rem 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-tactile);
            opacity: 0;
            transform: translateY(-20px);
        }

        .art-floating-header.header-ready {
            opacity: 1;
            transform: translateY(0);
        }

        .art-floating-header.header-hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

.art-editorial-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 50;
    transition: var(--transition-tactile);
}

.art-editorial-logo img {
    height: 240px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s ease;
}

.art-editorial-logo:hover img {
    transform: scale(1.04) rotate(-1deg);
    filter: drop-shadow(0 18px 40px rgba(70,44,125,0.18));
}

/* OPTIONAL floating soft glow */
.art-editorial-logo::after {
    content: '';
    position: absolute;
    inset: 20%;
    background: radial-gradient(
        circle,
        rgba(214,51,108,0.12),
        transparent 70%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.art-editorial-logo:hover::after {
    opacity: 1;
}


/* NAVIGATION */
.art-nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    list-style: none;
}
        .art-nav-menu-wrapper li a {
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--ink-black);
            text-decoration: none;
            cursor: pointer;
            position: relative;
            padding-bottom: 0.5rem;
            transition: var(--transition-tactile);
        }

        .art-nav-menu-wrapper li a:hover {
            color: var(--artistic-rose);
            letter-spacing: 0.25em;
        }

        .art-nav-menu-wrapper li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--artistic-rose);
            transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .art-nav-menu-wrapper li a:hover::after {
            width: 100%;
        }

        .art-nav-menu-wrapper li a.active-art-route {
            color: var(--earth-brown);
        }

        .art-burger-trigger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 7px;
        }

        .art-burger-trigger span {
            display: block;
            width: 24px;
            height: 1px;
            background: var(--ink-black);
            transition: var(--transition-tactile);
        }

        /* -------------------------------------------------------------
           📄 MULTIPAGE ROUTER CANVAS CONTAINERS
           ------------------------------------------------------------- */
        .art-magazine-view-segment {
            display: none;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .art-magazine-view-segment.active-art-segment {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* -------------------------------------------------------------
           🏠 HOME PAGE — “THE VISUAL POEM”
           ------------------------------------------------------------- */
        
        /* HERO SECTION */
        .hero-collage-stage {
            height: 150vh;
            position: relative;
            overflow: hidden;
            padding: 0 6%;
            display: flex;
            align-items: center;
        }

        .hero-poetic-typography {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            pointer-events: none;
            width: 100%;
        }

        .hero-poetic-typography h1 {
            font-family: var(--font-serif);
            font-size: clamp(4.5rem, 15vw, 11rem);
            line-height: 0.8;
            font-weight: 400;
            letter-spacing: -0.04em;
            color: var(--deep-violet);
            will-change: transform;
            opacity: 0;
            transform: translateY(50px);
        }

        .hero-poetic-typography .word-curated { transition-delay: 0.2s; }
        .hero-poetic-typography .word-visuals { 
            font-family: var(--font-script); 
            color: var(--artistic-rose); 
            padding-left: 22vw; 
            margin-left: 30rem;
            font-size: clamp(3.5rem, 13vw, 9rem);
            transition-delay: 0.5s;
        }
        .hero-poetic-typography .word-stories { 
            padding-left: 10vw; 
            color: var(--earth-brown); 
            transition-delay: 0.8s;
        }

        /* Overlapping Image System Collage Elements */
        .collage-img-portrait {
            position: absolute;
            right: 12%;
            bottom: 15vh;
            width: 30vw;
            height: 70vh;
            background-image: url('d3.png');
            background-size: cover;
            background-position: center;
            z-index: 2;
            will-change: transform;
        }

        .collage-img-square {
            position: absolute;
            left: 42vw;
            top: 22vh;
            width: 22vw;
            height: 100vh;
            background-image: url('d2.png');
            background-size: cover;
            background-position: center;
            z-index: 4;
            will-change: transform;
            box-shadow: -20px 20px 60px rgba(0,0,0,0.08);
        }

        .collage-img-vertical {
            position: absolute;
            left: 28vw;
            bottom: -8vh;
            width: 12vw;
            height: 50vh;
            background-image: url('https://i.pinimg.com/736x/21/3d/12/213d126e90776b5f3e3c4e773b1912a2.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1;
            opacity: 0.6;
            will-change: transform;
        }

.collage-layer-texture {
    position: absolute;
    top: 10vh;
    left: 8vw;
    width: 200px;
    height: 35vh;
    background-image: url("d1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

        /* SECTION 2 — “THE MEMORY COLLAGE” */
        .memory-layers-section {
            background-color:  #9cf79c;
            padding: 20rem 6%;
            display: flex;
            position: relative;
            align-items: flex-start;
            justify-content: space-between;
        }

        .memory-left-image-frame {
            width: 48%;
            position: relative;
            margin-bottom: -15rem;
            z-index: 10;
        }

        .memory-giant-image {
            width: 100%;
            height: 95vh;
            background-image: url('d4.png');
            background-size: cover;
            background-position: center;
            will-change: transform;
        }

        .memory-right-content-stream {
            width: 42%;
            padding-top: 25vh;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            will-change: transform;
        }

        .memory-right-content-stream h2 {
            font-family: var(--font-script);
            font-size: 2.8rem;
            color: var(--artistic-rose);
            font-weight: 400;
            line-height: 1.3;
        }

        .memory-right-content-stream p {
            font-size: 1.15rem;
            line-height: 2;
            color: rgba(26, 17, 38, 0.75);
            font-weight: 300;
        }

        .memory-right-content-stream blockquote {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-style: italic;
            color: var(--deep-violet);
            line-height: 1.6;
            border-left: 4px solid var(--earth-brown);
            padding-left: 2.5rem;
            margin-top: 2rem;
        }

        /* SECTION 3 — “FLOATING ART EXHIBITION” */
        .floating-gallery-section {
            background-color: var(--deep-violet);
            color:  #9cf79c;
            padding: 20rem 6%;
            position: relative;
            z-index: 5;
        }

        .freeform-gallery-matrix {
            display: flex;
            flex-direction: column;
            gap: 20rem;
            position: relative;
        }

        .gallery-freeform-node {
            position: relative;
            cursor: pointer;
            opacity: 0;
            transform: translateY(80px);
            transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .gallery-image-lens {
            overflow: hidden;
            position: relative;
            height: 100%;
            width: 100%;
        }

        .gallery-image-lens img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-rose-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(214, 51, 108, 0.8);
            opacity: 0;
            transition: var(--transition-tactile);
            z-index: 2;
        }

        .gallery-poetic-text-layer {
            position: absolute;
            bottom: -5rem;
            left: 2rem;
            z-index: 10;
            transition: var(--transition-tactile);
        }

        .gallery-poetic-text-layer h4 {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            color:  #9cf79c;
        }

        .gallery-poetic-text-layer span {
            font-family: var(--font-script);
            color: var(--artistic-rose);
            font-size: 1.1rem;
            opacity: 0;
            display: block;
            transform: translateY(15px);
            transition: var(--transition-tactile);
        }

        /* Asymmetrical Matrix Configuration Variations */
        .node-style-square { width: 30vw; height: 60vh; margin-left: 15vw; }
        .node-style-portrait { width: 28vw; height: 75vh; margin-left: 55vw; transform: translateY(-8rem); }
        .node-style-landscape { width: 48vw; height: 55vh; margin-left: 10vw; }
        .node-style-strip { width: 20vw; height: 70vh; margin-left: 65vw; transform: translateY(-12rem); }

        /* Slow-motion Hover Mechanics */
        .gallery-freeform-node:hover .gallery-image-lens img { transform: scale(1.08); }
        .gallery-freeform-node:hover .gallery-rose-mask { opacity: 1; }
        .gallery-freeform-node:hover .gallery-poetic-text-layer span { opacity: 1; transform: translateY(0); }
        .gallery-freeform-node:hover .gallery-poetic-text-layer { bottom: -2.5rem; }

        /* SECTION 4 — “THE STORY PAGES” */
        .story-fragments-section {
            background-color:  #9cf79c;
            padding: 22rem 6%;
            position: relative;
        }

        .magazine-story-container {
            max-width: 950px;
            margin: 0 auto;
            position: relative;
            text-align: left;
        }

        .magazine-giant-paragraph {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            line-height: 1.8;
            font-weight: 400;
            color: var(--ink-black);
            position: relative;
            z-index: 5;
        }

        .fragment-floating-img-1 {
            position: absolute;
            top: -15rem;
            right: -12vw;
            width: 24vw;
            height: 52vh;
            background-image: url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=700&q=80');
            background-size: cover;
            background-position: center;
            z-index: 1;
            will-change: transform;
        }

        .fragment-floating-img-2 {
            position: absolute;
            bottom: -18rem;
            left: -15vw;
            width: 26vw;
            height: 58vh;
            background-image: url('https://images.unsplash.com/photo-1576016770956-debb63d900df?auto=format&fit=crop&w=700&q=80');
            background-size: cover;
            background-position: center;
            z-index: 1;
            will-change: transform;
        }

        /* SECTION 5 — “IMMERSIVE CINEMATIC IMAGE” */
        .cinematic-wall-window {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cinematic-wall-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 130%;
            background-image: url('https://images.unsplash.com/photo-1554147090-e1221a247de2?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
            transform: scale(1.05);
            transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cinematic-outlined-typography {
            font-family: var(--font-serif);
            font-size: clamp(6rem, 24vw, 18rem);
            font-weight: 600;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
            z-index: 2;
            letter-spacing: 0.15em;
            user-select: none;
            pointer-events: none;
            will-change: transform;
        }

        .cinematic-foreground-scroller {
            position: absolute;
            bottom: 15%;
            right: 10%;
            max-width: 460px;
            z-index: 5;
            background: rgba(255, 255, 255, 0.95);
            padding: 4.5rem;
            border-left: 4px solid var(--artistic-rose);
            box-shadow: 0 40px 80px rgba(0,0,0,0.06);
        }

        /* SECTION 6 — “THE NOTEBOOK” */
        .artist-notes-section {
            background-color: var(--earth-brown);
            color:  #9cf79c;
            padding: 18rem 6%;
            position: relative;
        }

        .note-paper-grid-architecture {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 5rem;
            position: relative;
        }

        .note-paper-card {
            background:  #9cf79c;
            color: var(--ink-black);
            padding: 5rem;
            box-shadow: 20px 20px 50px rgba(0,0,0,0.1);
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .note-paper-card.stagger-card-visible {
            opacity: 1;
            transform: translateY(0) rotate(var(--rotation-factor));
        }

        .note-paper-card p {
            font-family: var(--font-script);
            font-size: 1.4rem;
            line-height: 1.9;
            color: var(--earth-brown);
        }

        .note-paper-card span {
            display: block;
            margin-top: 2.5rem;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--deep-violet);
        }

        .note-card-size-alpha { grid-column: 2 / span 5; --rotation-factor: -2deg; }
        .note-card-size-beta { grid-column: 8 / span 4; --rotation-factor: 3deg; margin-top: 10rem; }

        .note-embedded-overlapping-img {
            position: absolute;
            width: 25vw;
            height: 100vh;
            background-size: cover;
            background-position: center;
            z-index: 10;
        }

        /* SECTION 7 — “THE MASSIVE COLLAGE” */
        .immersive-collage-section {
            background-color:  #9cf79c;
            padding: 22rem 0;
            position: relative;
        }

        .massive-collage-viewport {
            width: 100%;
            height: 120vh;
            position: relative;
        }

        .pinned-artwork-item {
            position: absolute;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
        }

        .pinned-artwork-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(70, 44, 125, 0);
            transition: var(--transition-tactile);
        }

        .pinned-artwork-item .pinned-overlay-text {
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            color:  #9cf79c;
            font-family: var(--font-script);
            font-size: 1.5rem;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition-tactile);
            z-index: 5;
        }

        .pinned-node-1 { top: 4vh; left: -3vw; width: 32vw; height: 65vh; transform: rotate(-3deg); }
        .pinned-node-2 { top: 22vh; left: 34vw; width: 24vw; height: 55vh; transform: rotate(2deg); }
        .pinned-node-3 { top: -2vh; right: 16vw; width: 26vw; height: 60vh; transform: rotate(-2deg); }
        .pinned-node-4 { bottom: -8vh; right: -3vw; width: 30vw; height: 70vh; transform: rotate(4deg); }

        .pinned-artwork-item:hover {
            transform: scale(1.05) rotate(0deg) !important;
            z-index: 100;
            box-shadow: 0 50px 90px rgba(70, 44, 125, 0.18);
        }

        .pinned-artwork-item:hover::before {
            background: rgba(70, 44, 125, 0.45);
        }

        .pinned-artwork-item:hover .pinned-overlay-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* SECTION 8 — “SUBSCRIBE EXPERIENCE” */
        .subscribe-experience-section {
            background-color: var(--deep-violet);
            padding: 16rem 6%;
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 5;
        }

        .subscribe-art-cards-wrapper {
            width: 100%;
            max-width: 1150px;
            display: flex;
            position: relative;
        }

        .subscribe-card-left {
            width: 48%;
            background: var(--earth-brown);
            color:  #9cf79c;
            padding: 6.5rem;
            z-index: 2;
            transform: translateX(3rem);
            box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
        }

        .subscribe-card-left h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .subscribe-card-right {
            width: 57%;
            background:  #9cf79c;
            padding: 6.5rem 6.5rem 6.5rem 9rem;
            z-index: 1;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
        }

        .artistic-form-group {
            position: relative;
            margin-bottom: 4.5rem;
        }

        .artistic-line-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(26, 17, 38, 0.15);
            padding: 1.2rem 0;
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.25rem;
            outline: none;
            color: var(--ink-black);
            transition: var(--transition-tactile);
        }

        .artistic-line-input:focus {
            border-bottom-color: var(--artistic-rose);
            box-shadow: 0 1px 0 var(--artistic-rose);
        }

        .artistic-floating-label {
            position: absolute;
            left: 0;
            top: 1.2rem;
            font-family: var(--font-sans);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(26, 17, 38, 0.4);
            pointer-events: none;
            transition: var(--transition-tactile);
        }

        .artistic-line-input:focus ~ .artistic-floating-label,
        .artistic-line-input:not(:placeholder-shown) ~ .artistic-floating-label {
            top: -1.2rem;
            font-size: 0.75rem;
            color: var(--artistic-rose);
        }

        .artistic-action-btn {
            background-color: var(--artistic-rose);
            color:  #9cf79c;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            padding: 1.4rem 3.5rem;
            border: none;
            cursor: pointer;
            transition: var(--transition-tactile);
        }

        .artistic-action-btn:hover {
            background-color: var(--earth-brown);
        }

        /* -------------------------------------------------------------
           🌐 SCATTERED EDITORIAL FOOTER
           ------------------------------------------------------------- */
        .art-editorial-footer {
            background-color:  #9cf79c;
            color: var(--deep-violet);
            padding: 14rem 6% 4rem 6%;
            position: relative;
            opacity: 0;
            transition: opacity 2s ease;
        }

        .art-editorial-footer.footer-visible {
            opacity: 1;
        }

        .footer-scattered-layout {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 5rem;
            margin-bottom: 10rem;
        }

        .footer-brand-column { grid-column: span 4; }
        .footer-links-column { grid-column: 7 / span 3; }
        .footer-notes-column { grid-column: 10 / span 3; }

        .footer-scattered-layout h5 {
            font-family: var(--font-sans);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            margin-bottom: 2.5rem;
            color: var(--earth-brown);
        }

        .footer-scattered-layout ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .footer-scattered-layout ul li a {
            color: var(--deep-violet);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition-tactile);
            cursor: pointer;
        }

        .footer-scattered-layout ul li a:hover {
            color: var(--artistic-rose);
            padding-left: 8px;
        }

        .footer-meta-legal-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(70, 44, 125, 0.08);
            padding-top: 4rem;
            font-size: 0.85rem;
            color: rgba(70, 44, 125, 0.5);
        }

        /* -------------------------------------------------------------
           🖼 INTERIOR PAGES DESIGN LAYER INTERFACES
           ------------------------------------------------------------- */
        .interior-poetic-hero {
            background-color:  #9cf79c;
            padding: 20rem 6% 10rem 6%;
            position: relative;
        }

        .interior-poetic-hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(3.5rem, 9vw, 7.5rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--deep-violet);
        }

        .interior-poetic-hero h1 span {
            font-family: var(--font-script);
            color: var(--artistic-rose);
            display: block;
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            margin-top: 1.5rem;
        }

        .interior-freeform-layout-canvas {
            padding: 12rem 6%;
            background-color:  #9cf79c;
        }

        /* -------------------------------------------------------------
           📋 REGULATORY TEXT MODAL OVERLAYS
           ------------------------------------------------------------- */
        .art-regulatory-modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.98);
            z-index: 5000;
            display: none;
            overflow-y: auto;
            padding: 10rem 6%;
        }

        .regulatory-paper-scrim {
            max-width: 780px;
            margin: 0 auto;
            background:  #9cf79c;
            padding: 6rem;
            border: 1px solid rgba(138, 95, 65, 0.15);
            position: relative;
            box-shadow: 0 40px 80px rgba(0,0,0,0.03);
        }

        .regulatory-dismiss-btn {
            position: absolute;
            top: 3rem; right: 3rem;
            background: transparent;
            border: 1px solid var(--ink-black);
            padding: 0.6rem 1.8rem;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.1em;
            transition: var(--transition-tactile);
        }

        .regulatory-dismiss-btn:hover {
            background: var(--ink-black);
            color:  #9cf79c;
        }

        /* -------------------------------------------------------------
           📱 RESPONSIVE SYSTEM OVERRIDES & LAYOUT DISPLACEMENTS
           ------------------------------------------------------------- */
        @media (max-width: 1024px) {
            .art-nav-menu-wrapper {
                display: none;
            }

            .art-nav-menu-wrapper.drawer-expanded {
                display: flex;
                position: fixed;
                top: 7rem; left: 0; width: 100%;
                background:  #9cf79c;
                flex-direction: column;
                padding: 4rem 6%;
                gap: 2,5rem;
                border-bottom: 1px solid rgba(70, 44, 125, 0.05);
                z-index: 1900;
            }

            .art-burger-trigger {
                display: flex;
            }

            .hero-collage-stage {
                height: auto;
                padding: 16rem 6% 10rem 6%;
                flex-direction: column;
                align-items: flex-start;
                gap: 6rem;
            }

            .hero-poetic-typography h1 {
                line-height: 1;
            }

            .hero-poetic-typography .word-art {
                padding-left: 0;
            }

            .hero-poetic-typography .word-works {
                padding-left: 0;
            }

            .collage-img-portrait, .collage-img-square, .collage-img-vertical, .collage-layer-texture {
                display: none; /* Safely remove non-essential performance-heavy drifting items */
            }

            .memory-layers-section {
                flex-direction: column;
                padding: 10rem 6%;
                gap: 5rem;
            }

            .memory-left-image-frame, .memory-right-content-stream {
                width: 100%;
            }

            .memory-left-image-frame {
                margin-bottom: 0;
            }

            .memory-giant-image {
                height: 55vh;
            }

            .gallery-freeform-node {
                width: 100% !important;
                height: 50vh !important;
                margin-left: 0 !important;
                transform: none !important;
            }

            .freeform-gallery-matrix {
                gap: 10rem;
            }

            .fragment-floating-img-1, .fragment-floating-img-2 {
                display: none;
            }

            .note-paper-grid-architecture {
                grid-template-columns: 1fr;
            }

            .note-paper-card {
                grid-column: auto !important;
                transform: none !important;
                margin-top: 0 !important;
            }

            .massive-collage-viewport {
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 4rem;
            }

            .pinned-artwork-item {
                position: static;
                width: 100%;
                height: 50vh;
                transform: none !important;
            }

            .subscribe-art-cards-wrapper {
                flex-direction: column;
            }

            .subscribe-card-left, .subscribe-card-right {
                width: 100%;
                transform: none;
                padding: 4.5rem;
            }

            .footer-scattered-layout {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .footer-brand-column, .footer-links-column, .footer-notes-column {
                grid-column: auto;
            }
        }
/* =========================================
   IMMERSIVE GALLERY EXPERIENCE
========================================= */

.immersive-editorial-hero {
    padding: 18rem 6% 10rem;
    background: var(--canvas-tint);
}

.editorial-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.editorial-mini-label {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: var(--earth-brown);
}

.editorial-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: var(--deep-violet);
}

.editorial-hero-content h1 span {
    display: block;
    margin-top: 2rem;
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--artistic-rose);
    line-height: 1.3;
}

.editorial-hero-description {
    max-width: 700px;
    margin-top: 3rem;
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(26,17,38,0.72);
}


/* =========================================
   FLOATING IMAGES
========================================= */

.editorial-floating-hero-images {
    position: relative;
    height: 95vh;
}

.editorial-floating-main,
.editorial-floating-secondary {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.editorial-floating-main {
    width: 78%;
    height: 75vh;
    top: 0;
    right: 0;
    transform: rotate(-4deg);
}

.editorial-floating-secondary {
    width: 48%;
    height: 36vh;
    left: 0;
    bottom: 0;
    transform: rotate(6deg);
    border: 12px solid var(--canvas-tint);
}

.editorial-floating-main img,
.editorial-floating-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   MAIN GRID
========================================= */

.immersive-gallery-layout {
    padding: 8rem 6% 14rem;
    background: var(--canvas-tint);
}

.immersive-gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 7rem;
}


/* =========================================
   IMAGE BLOCKS
========================================= */

.immersive-image-block,
.immersive-wide-image,
.immersive-portrait-card {
    margin-bottom: 6rem;
}

.immersive-image-block img,
.immersive-wide-image img,
.immersive-portrait-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.immersive-image-block img {
    height: 90vh;
}

.immersive-wide-image img {
    height: 65vh;
}

.immersive-portrait-card img {
    height: 58vh;
}


/* =========================================
   CAPTIONS
========================================= */

.immersive-caption-block {
    margin-top: 2rem;
}

.immersive-caption-block span {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--earth-brown);
}

.immersive-caption-block h3 {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--deep-violet);
}

.immersive-caption-block p {
    max-width: 600px;
    line-height: 2;
    color: rgba(26,17,38,0.72);
}


/* =========================================
   QUOTE BLOCK
========================================= */

.immersive-editorial-quote {
    padding: 4rem 0 6rem;
}

.immersive-editorial-quote p {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--deep-violet);
    border-left: 2px solid var(--artistic-rose);
    padding-left: 2rem;
}


/* =========================================
   LONG TEXT
========================================= */

.immersive-long-text {
    max-width: 850px;
}

.immersive-long-text h4 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--deep-violet);
}

.immersive-long-text p {
    margin-bottom: 2rem;
    line-height: 2;
    color: rgba(26,17,38,0.75);
}


/* =========================================
   SIDE COLUMN
========================================= */

.immersive-material-card {
    position: sticky;
    top: 4rem;
    padding: 3rem;
    margin-bottom: 5rem;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.05);
}

.immersive-material-card span {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--earth-brown);
}

.immersive-material-card p,
.immersive-side-note p {
    line-height: 2;
    color: rgba(26,17,38,0.75);
}

.immersive-side-note {
    margin-top: 6rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(0,0,0,0.1);
}


/* =========================================
   ENDING SECTION
========================================= */

.immersive-ending-panel {
    padding: 12rem 6%;
    background:
        linear-gradient(
            to bottom,
            var(--canvas-tint),
            #e9dfd1
        );
}

.immersive-ending-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.immersive-ending-large h2 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--deep-violet);
}

.immersive-ending-copy p {
    line-height: 2;
    color: rgba(26,17,38,0.75);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .editorial-hero-grid,
    .immersive-gallery-grid,
    .immersive-ending-grid {
        grid-template-columns: 1fr;
    }

    .editorial-floating-hero-images {
        height: auto;
        margin-top: 4rem;
    }

    .editorial-floating-main,
    .editorial-floating-secondary {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        border: none;
    }

    .editorial-floating-secondary {
        margin-top: 2rem;
    }

    .immersive-image-block img,
    .immersive-wide-image img,
    .immersive-portrait-card img {
        height: auto;
    }

    .editorial-hero-content h1 {
        font-size: 4rem;
    }

    .immersive-editorial-quote p {
        font-size: 1.5rem;
    }

    .immersive-ending-large h2 {
        font-size: 3rem;
    }
}

/* =========================================
   ABOUT EXPERIENCE
========================================= */

.about-editorial-hero {
    padding: 18rem 6% 10rem;
    background: var(--canvas-tint);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.about-mini-label {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: var(--earth-brown);
}

.about-hero-copy h1 {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: var(--deep-violet);
}

.about-hero-copy h1 span {
    display: block;
    margin-top: 2rem;
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.3;
    color: var(--artistic-rose);
}

.about-hero-description {
    margin-top: 3rem;
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(26,17,38,0.72);
}


/* =========================================
   FLOATING IMAGES
========================================= */

.about-floating-images {
    position: relative;
    height: 95vh;
}

.about-main-image,
.about-secondary-image {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

.about-main-image {
    width: 80%;
    height: 78vh;
    right: 0;
    top: 0;
    transform: rotate(-3deg);
}

.about-secondary-image {
    width: 46%;
    height: 34vh;
    left: 0;
    bottom: 0;
    border: 12px solid var(--canvas-tint);
    transform: rotate(5deg);
}

.about-main-image img,
.about-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   PHILOSOPHY GRID
========================================= */

.about-philosophy-layout {
    padding: 8rem 6% 14rem;
    background: var(--canvas-tint);
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
}

.about-editorial-block {
    margin-bottom: 6rem;
}

.about-editorial-block span,
.about-material-note span {
    display: inline-block;
    margin-bottom: 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--earth-brown);
}

.about-editorial-block h3 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--deep-violet);
}

.about-editorial-block p {
    margin-bottom: 2rem;
    line-height: 2;
    color: rgba(26,17,38,0.75);
}


/* =========================================
   IMAGES
========================================= */

.about-wide-image,
.about-tall-image {
    margin-bottom: 6rem;
}

.about-wide-image img,
.about-tall-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-wide-image img {
    height: 60vh;
}

.about-tall-image img {
    height: 85vh;
}


/* =========================================
   MATERIAL NOTE
========================================= */

.about-material-note {
    padding: 3rem;
    margin-bottom: 6rem;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-material-note p {
    line-height: 2;
    color: rgba(26,17,38,0.75);
}


/* =========================================
   QUOTE
========================================= */

.about-editorial-quote {
    padding: 2rem 0;
}

.about-editorial-quote p {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--deep-violet);
    border-left: 2px solid var(--artistic-rose);
    padding-left: 2rem;
}


/* =========================================
   ENDING PANEL
========================================= */

.about-ending-panel {
    padding: 12rem 6%;
    background:
        linear-gradient(
            to bottom,
            var(--canvas-tint),
            #e9dfd1
        );
}

.about-ending-content {
    max-width: 1100px;
}

.about-ending-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
    color: var(--deep-violet);
}

.about-ending-content p {
    max-width: 700px;
    line-height: 2;
    color: rgba(26,17,38,0.75);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .about-hero-grid,
    .about-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .about-floating-images {
        height: auto;
        margin-top: 4rem;
    }

    .about-main-image,
    .about-secondary-image {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        border: none;
    }

    .about-secondary-image {
        margin-top: 2rem;
    }

    .about-wide-image img,
    .about-tall-image img {
        height: auto;
    }

    .about-hero-copy h1 {
        font-size: 4rem;
    }

    .about-editorial-quote p {
        font-size: 1.5rem;
    }

    .about-ending-content h2 {
        font-size: 3rem;
    }
}
