        /* --- BRAND CONSTANTS & UNIQUE SYSTEM VARS --- */
        :root {
            --color-gold: #FEB05D;
            --color-charcoal: #2B2A2A;
            --color-warm-ivory: #fefdfb;
            --color-sand: #ddae5c;
            --color-soft-gray: #ffeed1;
            --font-studio: 'Plus Jakarta Sans', sans-serif;
            --transition-architectural: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- SHEET RESET & RESET MATRIX --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        body {
            background-color: var(--color-warm-ivory);
            color: var(--color-charcoal);
            font-family: var(--font-studio);
            font-size: 1.15rem;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a, button {
            cursor: pointer;
            color: inherit;
            text-decoration: none;
            transition: var(--transition-architectural);
        }

        img, video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Utility System Layout Coordinates */
        .studio-max-width-grid {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 80px;
        }

        .studio-block-spacer {
            padding: 140px 0;
        }

        .gold-accent-line {
            width: 60px;
            height: 2px;
            background-color: var(--color-gold);
            border: none;
            margin: 24px 0;
        }

        /* Luxury Typography Scale Rules */
        h1, h2, h3, h4 {
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .editorial-hero-headline {
            font-size: 6rem;
            line-height: 1.05;
        }

        .editorial-section-headline {
            font-size: 3rem;
            line-height: 1.15;
            margin-bottom: 40px;
        }

        /* --- TRANSPARENT-TO-SOLID TRANSPRESSION HEADER --- */
        .luxury-studio-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 80px;
            transition: var(--transition-architectural);
            background-color: transparent;
        }

        .luxury-studio-header.header-scrolled {
            background-color: var(--color-warm-ivory);
            height: 90px;
            box-shadow: 0 10px 40px rgba(43,42,42,0.05);
        }

        .studio-brand-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: var(--color-charcoal);
            text-transform: uppercase;
        }

        .studio-brand-logo span {
            color: var(--color-gold);
        }

        .studio-center-navigation-bar {
            display: flex;
            gap: 40px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        .studio-center-navigation-bar a:hover {
            color: var(--color-gold);
        }

        .header-right-action-cluster {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .studio-action-button-gold {
            background-color: var(--color-gold);
            color: var(--color-charcoal);
            padding: 14px 32px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border: none;
            box-shadow: 0 4px 14px rgba(254,176,93,0.2);
        }

        .studio-action-button-gold:hover {
            background-color: var(--color-charcoal);
            color: var(--color-warm-ivory);
            transform: translateY(-2px);
        }

        /* Hamburger Control Element Matrix */
        .studio-hamburger-trigger {
            display: none;
            flex-direction: column;
            gap: 6px;
            width: 30px;
            background: none;
            border: none;
        }

        .studio-hamburger-trigger span {
            width: 100%;
            height: 2px;
            background-color: var(--color-charcoal);
            transition: var(--transition-architectural);
        }

        /* --- ROUTER SPA PLATFORM CONTENT CORES --- */
        .spa-dynamic-view-panel {
            display: none;
        }

        .spa-dynamic-view-panel.view-panel-active {
            display: block;
            animation: viewEntranceFade 0.8s ease forwards;
        }

        @keyframes viewEntranceFade {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- HERO SECTION: LAYERED COLLAGE PARALLAX --- */
        .hero-layered-studio-viewport {
            width: 100vw;
            height: 100vh;
            position: relative;
            background-color: var(--color-sand);
            overflow: hidden;
        }

        .hero-background-giant-typography {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 32vw;
            font-weight: 900;
            color: rgba(43,42,42,0.03);
            text-transform: uppercase;
            letter-spacing: -0.05em;
            line-height: 0.8;
            user-select: none;
            pointer-events: none;
            z-index: 1;
        }

        .hero-collage-image-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .parallax-collage-node {
            position: absolute;
            background-color: var(--color-soft-gray);
            box-shadow: 0 30px 60px rgba(17,17,17,0.15);
            transition: transform 0.1s ease-out;
        }

        .p-node-1 { width: 14vw; height: 45vh; top: 15%; left: 5%; }
        .p-node-2 { width: 18vw; height: 55vh; top: 35%; left: 22%; }
        .p-node-3 { width: 16vw; height: 50vh; top: 8%; right: 24%; }
        .p-node-4 { width: 15vw; height: 40vh; top: 48%; right: 6%; }
        .p-node-5 { width: 12vw; height: 35vh; bottom: 5%; left: 45%; }

        .hero-foreground-floating-panel {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            background-color: rgba(255, 248, 239, 0.95);
            backdrop-filter: blur(20px);
            padding: 60px;
            max-width: 620px;
            text-align: center;
            box-shadow: 0 40px 90px rgba(43,42,42,0.1);
        }

        .hero-small-studio-tag {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-gold);
            font-weight: 800;
            margin-bottom: 16px;
            display: block;
        }

        /* --- SECTION 2: ORGANIC FLOATING CIRCULAR BLOCKS --- */
        .organic-circles-landscape {
            position: relative;
            min-height: 900px;
            width: 100%;
            overflow: hidden;
            margin-top: 60px;
        }

        .floating-circle-node-block {
            position: absolute;
            border-radius: 50%;
            background-color: var(--color-sand);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            color: var(--color-charcoal);
            box-shadow: 0 20px 50px rgba(43,42,42,0.06);
            transition: var(--transition-architectural);
        }

        .floating-circle-node-block:hover {
            transform: translateY(-10px) scale(1.02);
            background-color: #FFFFFF;
        }

        .floating-circle-node-block .circle-img-frame {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 16px;
            border: 2px solid var(--color-gold);
        }

        .floating-circle-node-block h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .floating-circle-node-block p {
            font-size: 0.95rem;
            max-width: 220px;
            line-height: 1.4;
        }

        /* Absolute Layout Map coordinates for organic structure */
        .circle-coord-1 { width: 340px; height: 340px; top: 10%; left: 5%; }
        .circle-coord-2 { width: 320px; height: 320px; top: 45%; left: 35%; }
        .circle-coord-3 { width: 360px; height: 360px; top: 5%; right: 8%; }
        .circle-coord-4 { width: 310px; height: 310px; bottom: 8%; left: 8%; }
        .circle-coord-5 { width: 330px; height: 330px; top: 48%; right: 5%; }

        .svg-connector-canvas-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        /* --- SECTION 3: INTERACTIVE CHARCOAL MARKET WALL --- */
        .charcoal-market-wall-container {
            background-color: var(--color-charcoal);
            color: var(--color-warm-ivory);
        }

        .charcoal-market-wall-container h2 {
            color: #FFFFFF;
        }

        .interactive-market-flex-deck {
            display: flex;
            width: 100%;
            height: 600px;
            gap: 20px;
            margin-top: 60px;
        }

        .oversized-vertical-market-panel {
            flex: 1;
            height: 100%;
            position: relative;
            overflow: hidden;
            background-color: #3E3D3D;
            transition: var(--transition-architectural);
        }

        .oversized-vertical-market-panel:hover {
            flex: 2.5;
        }

        .panel-image-curtain-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.35;
            transition: var(--transition-architectural);
        }

        .oversized-vertical-market-panel:hover .panel-image-curtain-bg {
            opacity: 0.7;
            transform: scale(1.05);
        }

        .panel-content-text-anchor {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            z-index: 5;
        }

        .panel-content-text-anchor h3 {
            font-size: 2rem;
            color: #FFFFFF;
            margin-bottom: 12px;
            white-space: nowrap;
        }

        .panel-hidden-narrative-summary {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-architectural);
            font-size: 1rem;
            color: var(--color-sand);
        }

        .oversized-vertical-market-panel:hover .panel-hidden-narrative-summary {
            opacity: 1;
            max-height: 150px;
            margin-top: 10px;
        }

        /* --- SECTION 4: FULL-WIDTH CINEMATIC FILM BANNER --- */
        .cinematic-film-container-frame {
            position: relative;
            width: 100vw;
            height: 75vh;
            overflow: hidden;
            background-color: var(--color-charcoal);
        }

        .cinematic-film-container-frame img {
            opacity: 0.5;
            transform: scale(1);
            animation: slowBackgroundPanZoom 25s infinite alternate ease-in-out;
        }

        @keyframes slowBackgroundPanZoom {
            from { transform: scale(1); }
            to { transform: scale(1.12); }
        }

        .cinematic-overlay-content-block {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #FFFFFF;
            width: 100%;
            max-width: 800px;
            padding: 0 40px;
            z-index: 5;
        }

        .cinematic-overlay-content-block h2 {
            font-size: 4rem;
            font-weight: 200;
            font-style: italic;
            color: var(--color-gold);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        /* --- SECTION 5: STAGING LAB ASYMMETRICAL SHEETS --- */
        .staging-lab-asymmetrical-deck {
            position: relative;
            min-height: 650px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            padding-top: 60px;
        }

        .pinned-design-sheet-rectangular {
            background-color: #FFFFFF;
            padding: 20px 20px 40px 20px;
            width: 340px;
            box-shadow: 0 15px 35px rgba(43,42,42,0.07);
            transition: var(--transition-architectural);
        }

        .pinned-design-sheet-rectangular .sheet-photo-wrapper {
            aspect-ratio: 4 / 3;
            background-color: var(--color-soft-gray);
            margin-bottom: 20px;
            overflow: hidden;
        }

        .pinned-design-sheet-rectangular h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--color-charcoal);
        }

        .pinned-design-sheet-rectangular p {
            font-size: 0.95rem;
            color: var(--color-charcoal);
            line-height: 1.4;
        }

        /* Unique sheet rotation angles to form realistic pin arrangement */
        .sheet-angle-1 { transform: rotate(-3deg); }
        .sheet-angle-2 { transform: rotate(4deg); top: 15px; }
        .sheet-angle-3 { transform: rotate(-2deg); }
        .sheet-angle-4 { transform: rotate(5deg); }
        .sheet-angle-5 { transform: rotate(-4deg); }
        .sheet-angle-6 { transform: rotate(2deg); }

        .pinned-design-sheet-rectangular:hover {
            transform: rotate(0deg) translateY(-15px) scale(1.04);
            box-shadow: 0 30px 60px rgba(43,42,42,0.12);
            z-index: 50;
        }

        /* --- SECTION 6: LONG DIAGONAL PROPERTY STRIP --- */
        .diagonal-strip-container-window {
            width: 100vw;
            overflow: hidden;
            background-color: var(--color-sand);
            padding: 100px 0;
            position: relative;
        }

        .diagonal-strip-moving-track {
            display: flex;
            gap: 40px;
            width: 140%;
            transform: rotate(-2deg) translateX(-5%);
            padding: 20px 0;
        }

        .diagonal-strip-text-block-node {
            background-color: var(--color-warm-ivory);
            padding: 40px;
            min-width: 320px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .diagonal-strip-image-node {
            min-width: 400px;
            height: 280px;
            background-color: var(--color-soft-gray);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        /* --- SECTION 7: SUCCESS STORIES TESTIMONIAL SLIDER --- */
        .gold-success-stories-container {
            background-color: var(--color-gold);
            color: var(--color-charcoal);
            position: relative;
            overflow: hidden;
        }

        .horizontal-testimonial-slider-viewport {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            width: 100%;
        }

        .oversized-testimonial-panel-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .slide-split-portrait-frame {
            height: 500px;
            background-color: var(--color-charcoal);
            box-shadow: 0 25px 60px rgba(0,0,0,0.1);
        }

        .slide-narrative-quote-block blockquote {
            font-size: 2.2rem;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .slider-navigation-arrow-cluster {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .slider-navigation-arrow-cluster button {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 1px solid var(--color-charcoal);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-navigation-arrow-cluster button:hover {
            background-color: var(--color-charcoal);
            color: #FFFFFF;
        }

        /* --- SECTION 8: ASYMMETRICAL IMAGE MOSAIC --- */
        .asymmetrical-mosaic-container-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 120px;
            gap: 30px;
            margin-top: 60px;
        }

        .mosaic-node-item {
            position: relative;
            overflow: hidden;
            background-color: var(--color-soft-gray);
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }

        .mosaic-node-item-m1 { grid-column: span 5; grid-row: span 3; }
        .mosaic-node-item-m2 { grid-column: span 7; grid-row: span 4; }
        .mosaic-node-item-m3 { grid-column: span 4; grid-row: span 4; }
        .mosaic-node-item-m4 { grid-column: span 4; grid-row: span 3; }
        .mosaic-node-item-m5 { grid-column: span 4; grid-row: span 3; }

        .mosaic-hover-overlay-slide-sheet {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(43,42,42,0.9);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transform: translateY(100%);
            transition: var(--transition-architectural);
            color: #FFFFFF;
        }

        .mosaic-node-item:hover .mosaic-hover-overlay-slide-sheet {
            transform: translateY(0);
        }

        /* --- SECTION 9: SELLER KNOWLEDGE LIBRARY BOOKSHELF --- */
        .charcoal-library-container {
            background-color: var(--color-charcoal);
            color: #FFFFFF;
        }

        .bookshelf-vertical-structural-deck {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            border-bottom: 8px solid var(--color-gold);
            padding-top: 60px;
            margin-bottom: 40px;
        }

        .bookshelf-vertical-volume-node {
            background-color: #3E3D3D;
            height: 380px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            justify-content:间;
            justify-content: space-between;
            border-left: 4px solid var(--color-gold);
            cursor: pointer;
            transition: var(--transition-architectural);
        }

        .bookshelf-vertical-volume-node:hover, .bookshelf-vertical-volume-node.volume-selected {
            background-color: var(--color-gold);
            color: var(--color-charcoal);
            transform: translateY(-20px);
            height: 390px;
        }

        .bookshelf-vertical-volume-node h3 {
            font-size: 1.4rem;
            transform: rotate(-90deg) translate(-100%, 0);
            transform-origin: top left;
            white-space: nowrap;
            margin-top: 120px;
            width: 30px;
        }

        .library-expanded-summary-drawer-panel {
            display: none;
            background-color: rgba(255,255,255,0.05);
            padding: 40px;
            border-left: 2px solid var(--color-gold);
            animation: drawerSlideReveal 0.5s ease forwards;
        }

        @keyframes drawerSlideReveal {
            from { opacity: 0; max-height: 0; }
            to { opacity: 1; max-height: 300px; }
        }

        /* --- SECTION 10: OVERSIZED STATIC STATISTICS MATRIX --- */
        .metrics-counters-row-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .metric-counter-display-node {
            text-align: center;
        }

        .metric-counter-display-node h3 {
            font-size: 4.5rem;
            color: var(--color-gold);
            margin-bottom: 8px;
        }

        /* --- SECTION 11: ISOLATED NEWSLETTER FORM FRAME --- */
        .newsletter-studio-parallax-frame {
            width: 100vw;
            min-height: 650px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-isolated-floating-plate {
            background-color: var(--color-warm-ivory);
            padding: 60px;
            width: 100%;
            max-width: 520px;
            text-align: center;
            box-shadow: 0 40px 90px rgba(0,0,0,0.12);
        }

        .studio-input-field-wrapper {
            margin-bottom: 20px;
        }

        .studio-input-element-node {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--color-soft-gray);
            padding: 14px 4px;
            font-family: var(--font-studio);
            font-size: 1.05rem;
            color: var(--color-charcoal);
            transition: var(--transition-architectural);
        }

        .studio-input-element-node:focus {
            border-bottom-color: var(--color-gold);
        }

        .studio-form-divider-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 24px 0;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-soft-gray);
        }

        .studio-form-divider-line::before, .studio-form-divider-line::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: var(--color-soft-gray);
        }

        .form-success-message-box-card {
            display: none;
            text-align: center;
        }

        /* --- ADDON COMPASS PAGE SUBPAGE BLUEPRINTS --- */
        .subpage-editorial-banner {
            padding: 160px 0 80px 0;
            background-color: var(--color-sand);
            border-bottom: 1px solid var(--color-soft-gray);
            text-align: center;
        }

        .subpage-editorial-banner h1 {
            font-size: 4rem;
            margin-bottom: 16px;
        }

        .split-form-narrative-layout-sheet {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        /* --- DYNAMIC SLIDEOUT MOBILE CURTAIN LAYER --- */
        .mobile-curtain-layer-frame {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--color-charcoal);
            z-index: 9998;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            transform: translateY(-100%);
            transition: var(--transition-architectural);
        }

        .mobile-curtain-layer-frame.curtain-visible {
            transform: translateY(0);
        }

        .mobile-curtain-layer-frame a {
            font-size: 2.2rem;
            font-weight: 200;
            color: #FFFFFF;
        }

        .mobile-curtain-layer-frame a:hover {
            color: var(--color-gold);
        }

        /* --- STUDIO MAGAZINE CHARCOAL FOOTER --- */
        .studio-magazine-footer {
            background-color: var(--color-charcoal);
            color: var(--color-soft-gray);
            padding: 120px 0 60px 0;
        }

        .footer-four-columns-layout-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
            border-top: 1px solid #3E3D3D;
            padding-top: 60px;
        }

        .footer-column-stack-node h4 {
            color: #FFFFFF;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
        }

        .footer-column-stack-node ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-column-stack-node ul a:hover {
            color: var(--color-gold);
        }

        .footer-base-copyright-flex-strip {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 80px;
            border-top: 1px solid #3E3D3D;
            padding-top: 40px;
            font-size: 0.95rem;
        }

        /* --- RESPONSIVE ADAPTABILITY & BREAKPOINTS --- */
        @media (max-width: 1200px) {
            .editorial-hero-headline { font-size: 4.5rem; }
            .bookshelf-vertical-structural-deck { grid-template-columns: repeat(3, 1fr); }
            .bookshelf-vertical-volume-node h3 { margin-top: 140px; }
        }

        @media (max-width: 992px) {
            .luxury-studio-header { padding: 0 40px; }
            .studio-center-navigation-bar { display: none; }
            .studio-hamburger-trigger { display: flex; }
            .oversized-testimonial-panel-slide { grid-template-columns: 1fr; }
            .interactive-market-flex-deck { flex-direction: column; height: auto; }
            .oversized-vertical-market-panel { height: 240px; }
            .asymmetrical-mosaic-container-grid { grid-auto-rows: 180px; }
            .metrics-counters-row-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .split-form-narrative-layout-sheet { grid-template-columns: 1fr; gap: 40px; }
            .footer-four-columns-layout-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 600px) {
            .luxury-studio-header { padding: 0 24px; }
            .studio-max-width-grid { padding: 0 24px; }
            .editorial-hero-headline { font-size: 3rem; }
            .editorial-section-headline { font-size: 2.2rem; }
            .hero-foreground-floating-panel { padding: 30px 20px; }
            .organic-circles-landscape { display: flex; flex-direction: column; gap: 20px; min-height: auto; }
            .floating-circle-node-block { position: static; width: 100% !important; height: auto !important; border-radius: 0; }
            .floating-circle-node-block .circle-img-frame { display: none; }
            .bookshelf-vertical-structural-deck { grid-template-columns: 1fr; }
            .bookshelf-vertical-volume-node { height: 100px; padding: 20px; flex-direction: row; align-items: center; border-left: none; border-bottom: 4px solid var(--color-gold); }
            .bookshelf-vertical-volume-node h3 { transform: none; margin-top: 0; width: auto; }
            .asymmetrical-mosaic-container-grid { display: flex; flex-direction: column; }
            .footer-four-columns-layout-grid { grid-template-columns: 1fr; }
            .footer-base-copyright-flex-strip { flex-direction: column; gap: 16px; text-align: center; }
        }

        /* Diagonal strip container - make it scrollable */
.diagonal-strip-container-window {
    width: 100%;
    overflow-x: auto;           /* Enables horizontal scrolling */
    overflow-y: hidden;
    background-color: var(--color-sand);
    padding: 60px 0;
    position: relative;
    cursor: grab;
    scroll-behavior: smooth;    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
}

.diagonal-strip-container-window::-webkit-scrollbar {
    height: 6px;
}

.diagonal-strip-container-window::-webkit-scrollbar-track {
    background: rgba(43, 42, 42, 0.1);
    border-radius: 10px;
}

.diagonal-strip-container-window::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
}

.diagonal-strip-moving-track {
    display: flex;
    gap: 40px;
    padding: 20px 60px;
    width: max-content;         /* Expands to fit all children */
    transform: rotate(-1.5deg);
    align-items: center;
}

.diagonal-strip-text-block-node {
    background-color: var(--color-warm-ivory);
    padding: 40px 35px;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.diagonal-strip-image-node {
    min-width: 350px;
    height: 250px;
    background-color: var(--color-soft-gray);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    flex-shrink: 0;
    overflow: hidden;
}

.diagonal-strip-image-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Optional: drag-to-scroll hint */
.diagonal-strip-container-window::after {
    content: '⇄ scroll';
    position: absolute;
    bottom: 12px;
    right: 30px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(43,42,42,0.3);
    background: rgba(255,255,255,0.6);
    padding: 4px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
