        /* --- GLOBAL EDITORIAL ARCHITECTURE --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg-primary: #000000;
            --bg-secondary: #DBE4C9;
            --accent: #D96F32;
            --accent-alt: #D96F09;
            --bg-light: #FFFFFF;
            --text-white: #FFFFFF;
            --text-black: #000000;
            --font-mono: "Major Mono Display", monospace;
        }

        html, body {
            background-color: var(--bg-primary);
            color: var(--text-white);
            font-family: var(--font-mono);
            font-weight: 400;
            font-style: normal;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Clean Monochrome Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 5px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
        }

        /* Typography Presets */
        h1, h2, h3, h4, h5, h6, p, a, span, button, input, textarea {
            font-family: var(--font-mono), monospace !important;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            line-height: 1.6;
        }

        p {
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        hr {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin: 20px 0;
        }

        /* --- SPA ROUTING VIEWSETS --- */
        .page-view {
            display: none;
            width: 100%;
            min-height: 100vh;
        }

        .active-view {
            display: block;
            animation: viewTransition 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        @keyframes viewTransition {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- LEFT PERMANENT EDITORIAL SIDEBAR (HOME ONLY) --- */
/* --- LEFT PERMANENT EDITORIAL SIDEBAR (HOME ONLY) --- */
.editorial-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 100vh;
    background: url('https://i.pinimg.com/736x/e6/87/b1/e687b1b7e93dd7eab74accaa73149a9e.jpg') center/cover no-repeat;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    overflow: hidden; /* Prevents any internal scrolling */
    pointer-events: auto;
}

/* --- LAYOUT MAIN WRAPPER FOR HOME PAGE ALLOCATION --- */
.home-layout-wrapper {
    margin-left: 120px;
    width: calc(100% - 120px);
    min-height: 100vh;
    overflow-y: auto; /* Enables scrolling for content only */
    height: 100vh; /* Constrains to viewport height */
    scroll-behavior: smooth;
}

/* Ensure body doesn't scroll when sidebar is present */
body {
    overflow: hidden;
    height: 100vh;
}

/* Override for inner pages without sidebar */
body:has(.page-view:not(#view-home)) {
    overflow-y: auto;
    height: auto;
}

/* --- LEFT PERMANENT EDITORIAL SIDEBAR (HOME ONLY) --- */
.editorial-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 100vh;
    background: url('https://i.pinimg.com/736x/e6/87/b1/e687b1b7e93dd7eab74accaa73149a9e.jpg') center/cover no-repeat;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;
    pointer-events: auto;
}

/* --- RESPONSIVE CONFIGURATIONS --- */
@media (max-width: 1024px) {
    .editorial-sidebar { 
        display: flex !important; 
        width: 80px;
        padding: 30px 0;
    }
    .home-layout-wrapper { 
        margin-left: 80px; 
        width: calc(100% - 80px); 
    }
    .sidebar-logo a {
        font-size: 11px;
        letter-spacing: 0.2em;
    }
    .sidebar-socials a {
        font-size: 10px;
    }
    .sidebar-hamburger {
        width: 28px;
        height: 28px;
        gap: 5px;
    }
    .sidebar-hamburger span {
        height: 1.5px;
    }
    .inner-hamburger-trigger { display: flex; }
    .inner-navigation-links { display: none; }
    
    .split-marquee-block, .storytelling-split-container, .split-contrast-block, .three-unequal-grid, .inner-split-narrative-row, .triple-no-gap-block, .contact-split-architecture {
        flex-direction: column;
        grid-template-columns: 1fr !important;
    }
    .gallery-four-grid, .staggered-four-column-grid, .heighted-gallery-four-grid, .two-row-panels-container, .three-column-text-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .staggered-image-node.down-shift { margin-top: 0; }
    .triple-color-column-unit, .unequal-panel-right-sage { height: auto; min-height: initial; }
    .card-editorial-panel-cover { width: 100%; }
}

@media (max-width: 600px) {
    .editorial-sidebar { 
        width: 60px;
        padding: 20px 0;
    }
    .home-layout-wrapper { 
        margin-left: 60px; 
        width: calc(100% - 60px); 
    }
    .sidebar-logo a {
        font-size: 9px;
        letter-spacing: 0.15em;
    }
    .sidebar-socials {
        gap: 15px;
    }
    .sidebar-socials a {
        font-size: 8px;
    }
    .sidebar-hamburger {
        width: 22px;
        height: 22px;
        gap: 4px;
    }
    .sidebar-hamburger span {
        height: 1.5px;
    }
    .gallery-four-grid, .staggered-four-column-grid, .heighted-gallery-four-grid, .two-row-panels-container, .three-column-text-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-title-architecture h1 { font-size: 28px; }
    .inner-page-header { padding: 15px; }
    .staggered-header-row { flex-direction: column; gap: 20px; }
    .dual-buttons-row { flex-direction: column; width: 100%; }
    .editorial-action-btn { width: 100%; }
    .marquee-left-content { padding: 40px 20px; }
    .marquee-left-content h2 { font-size: 20px; }
    .storytelling-block { padding: 60px 20px; }
    .staggered-white-block { padding: 60px 20px; }
    .unequal-panels-block { padding: 60px 20px; }
    .generic-editorial-container { padding: 40px 20px; }
    .inner-hero-header-block h1 { font-size: 28px; padding: 0 20px; text-align: center; }
    .narrative-left-text { padding: 40px 20px; }
    .narrative-left-text p { font-size: 13px; }
}
        .editorial-sidebar::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1;
        }

        .sidebar-logo, .sidebar-hamburger, .sidebar-socials {
            position: relative;
            z-index: 2;
        }

        .sidebar-logo a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 13px;
            writing-mode: vertical-rl;
            letter-spacing: 0.3em;
            font-weight: bold;
            cursor: pointer;
        }

        .sidebar-hamburger {
            background: transparent;
            border: none;
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }

        .sidebar-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-white);
            transition: all 0.3s ease;
        }

        .sidebar-socials {
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
        }

        .sidebar-socials a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 11px;
            transition: color 0.3s ease;
        }

        .sidebar-socials a:hover {
            color: var(--accent);
        }

        /* Layout Main wrapper for home page allocation */
        .home-layout-wrapper {
            margin-left: 120px;
            width: calc(100% - 120px);
        }

        /* --- GLOBAL INNER STICKY NAVIGATION --- */
        .inner-page-header {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: var(--bg-light);
            z-index: 900;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .inner-logo a {
            color: var(--text-black);
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }

        .inner-navigation-links {
            display: flex;
            gap: 35px;
        }

        .inner-navigation-links a {
            color:white;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .inner-navigation-links a:hover, .inner-navigation-links a.active-route {
            color: var(--accent);
        }

        .inner-hamburger-trigger {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            width: 25px;
        }

        .inner-hamburger-trigger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-black);
        }

        /* --- FULLSCREEN INTERACTIVE OVERLAY MENU --- */
        .fullscreen-overlay-container {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            background: rgba(0, 0, 0, 0.97);
            z-index: 2500;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .fullscreen-overlay-container.is-active {
            display: flex;
            animation: overlayFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        @keyframes overlayFadeIn {
            from { opacity: 0; transform: scale(1.05); }
            to { opacity: 1; transform: scale(1); }
        }

        .overlay-close-trigger {
            position: absolute;
            top: 50px;
            right: 60px;
            background: transparent;
            border: none;
            color: var(--text-white);
            font-size: 36px;
            cursor: pointer;
        }

        .overlay-links-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }

        .overlay-links-wrapper a {
            color: var(--text-white);
            font-size: 26px;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            cursor: pointer;
        }

        .overlay-links-wrapper a:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }

        /* --- HOME HERO SLIDESHOW COMPONENT --- */
        .home-hero-display {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slide-track {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
        }

        .single-hero-slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .single-hero-slide.active-slide {
            opacity: 1;
            animation: deliberateZoom 9s linear infinite forwards;
        }

        @keyframes deliberateZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .hero-overlay-curtain {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2;
        }

        .hero-title-architecture {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 40px;
        }

        .hero-title-architecture h1 {
            font-size: 4.5vw;
            margin-bottom: 20px;
            color: var(--text-white);
        }

        .rotating-word-node {
            color: var(--accent);
            display: inline-block;
            transition: opacity 0.3s ease;
        }

        .hero-title-architecture p {
            max-width: 550px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* --- SECTION 2: MARQUEE SPLIT --- */
        .split-marquee-block {
            display: flex;
            width: 100%;
            min-height: 70vh;
        }

        .marquee-left-content {
            flex: 1;
            background-color: var(--bg-primary);
            padding: 80px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;
        }

        .marquee-left-content img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        .marquee-left-content h2 {
            font-size: 28px;
            color: var(--text-white);
        }

        .marquee-left-content p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 400px;
        }

        .marquee-right-display {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .marquee-scroller-strip {
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            padding: 30px 0;
            white-space: nowrap;
            overflow: hidden;
        }

        .marquee-headline-text {
            display: inline-block;
            font-size: 48px;
            font-weight: bold;
            color: transparent;
            -webkit-text-stroke: 1px var(--text-white);
            animation: editorialMarquee 25s linear infinite;
        }

        @keyframes editorialMarquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* --- SECTION 3: EDITORIAL ROW GALLERY --- */
        .row-gallery-block {
            background-color: var(--bg-primary);
            padding: 30px 15px;
        }

        .gallery-four-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .gallery-four-grid .square-card-item {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-four-grid .square-card-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-four-grid .square-card-item::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.8);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card-inner-reveal-title {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) translateY(10px);
            z-index: 5;
            opacity: 0;
            font-size: 12px;
            color: var(--text-white);
            text-align: center;
            width: 80%;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-four-grid .square-card-item:hover img {
            transform: scale(1.1);
        }

        .gallery-four-grid .square-card-item:hover::after {
            opacity: 1;
        }

        .gallery-four-grid .square-card-item:hover .card-inner-reveal-title {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
        }

        /* --- SECTION 4: STORYTELLING & ZOOMING PANELS --- */
        .storytelling-block {
            position: relative;
            background-position: center;
            background-attachment: fixed;
        }

        .storytelling-block::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
           
            z-index: 1;
        }

        .storytelling-split-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .story-left-portrait-slider {
            margin-top: 50px;
            position: relative;
            height: 520px;
            overflow: hidden;
        }

        .story-portrait-slide {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .story-portrait-slide.active-slide {
            opacity: 1;
        }

        .story-slider-dots {
            position: absolute;
            bottom: 25px;
            left: 25px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .story-dot-trigger {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            cursor: pointer;
        }

        .story-dot-trigger.active-dot {
            background: var(--accent);
        }

        .story-right-text-stack {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;
        }

        .story-right-text-stack h2 {
            font-size: 32px;
        }

        .story-right-text-stack p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Accordion component */
        .editorial-accordion-wrapper {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .accordion-item-node {
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 15px;
        }

        .accordion-header-btn {
            width: 100%;
            background: transparent;
            border: none;
            text-align: left;
            color: var(--text-white);
            font-size: 14px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-pane-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            padding-top: 10px;
        }

        /* Services mini row block */
        .mini-services-quad-row {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 80px;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
        }

        .mini-service-item h4 {
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 6px;
        }

        .mini-service-item p {
            font-size: 11px;
            color: rgba(255,255,255,0.6);
        }

        /* 2x2 Image Panels Zoom Out */
        .two-row-panels-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .zoom-out-image-card {
            position: relative;
            height: 380px;
            overflow: hidden;
            cursor: pointer;
        }

        .zoom-out-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-editorial-panel-cover {
            position: absolute;
            top: 0; left: 0;
            width: 55%; height: 100%;
            padding: 40px;
            display: flex;
            align-items: center;
            z-index: 5;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
            transform-origin: left center;
        }

        .zoom-out-image-card:hover .card-editorial-panel-cover {
            transform: scale(0);
            opacity: 0;
        }

        /* --- SECTION 5: STAGGERED IMAGE CARDS ON WHITE --- */
        .staggered-white-block {
            background-color: var(--bg-light);
            color: var(--text-black);
            padding: 100px 50px;
        }

        .staggered-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
        }

        .staggered-header-row h4 {
            color: var(--accent);
            font-size: 13px;
            margin-bottom: 8px;
        }

        .staggered-header-row h2 {
            font-size: 30px;
            color: var(--text-black);
        }

        .staggered-header-row p {
            max-width: 450px;
            color: rgba(0, 0, 0, 0.7);
        }

        .staggered-four-column-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .staggered-image-node {
            position: relative;
        }

        .staggered-image-node.down-shift {
            margin-top: 60px;
        }

        .staggered-img-wrapper {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .staggered-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .staggered-image-node:hover .staggered-img-wrapper img {
            transform: scale(1.08);
        }

        .staggered-image-node h3 {
            font-size: 14px;
            color: var(--text-black);
            margin-bottom: 4px;
        }

        .staggered-image-node p {
            font-size: 11px;
            color: rgba(0,0,0,0.5);
        }

        /* --- SECTION 6: SPLIT CONTRAST LAYOUT --- */
        .split-contrast-block {
            display: flex;
            width: 100%;
            background-color: var(--bg-light);
        }

        .contrast-left-sage {
            flex: 1;
            background-color: var(--bg-secondary);
            padding: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contrast-left-sage img {
            width: 75%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

        .contrast-right-black {
            flex: 1;
            background-color: var(--bg-primary);
            color: var(--bg-secondary);
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 40px;
        }

        .contrast-content-segment {
            position: relative;
        }

        .contrast-content-segment h2 {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .contrast-content-segment p {
            color: rgba(219, 228, 201, 0.8);
        }

        /* --- SECTION 7: UNEQUAL EDITORIAL PANELS --- */
        .unequal-panels-block {
            position: relative;
            width: 100%;
            background-position: center;
        }

        .unequal-centered-head {
            text-align: center;
            margin-bottom: 60px;
        }

        .unequal-centered-head h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .unequal-centered-head p {
            max-width: 500px;
            margin: 0 auto;
            color: rgba(255,255,255,0.7);
        }

        .three-unequal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.3fr;
            gap: 15px;
        }

        .unequal-panel-left {
            background-color: var(--bg-primary);
            padding: 40px;
            display: flex;
            align-items: center;
        }

        .unequal-panel-left p {
            font-size: 15px;
            color: var(--bg-secondary);
        }

        .unequal-panel-center-img {
            background-size: cover;
            background-position: center;
            min-height: 420px;
        }

        .unequal-panel-right-sage {
            background-color: var(--bg-secondary);
            color: var(--text-black);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 420px;
        }

        .unequal-panel-right-sage h2 {
            font-size: 20px;
            color: var(--text-black);
        }

        .unequal-slider-track-area {
            position: relative;
            height: 100px;
            overflow: hidden;
            margin-top: 20px;
        }

        .unequal-text-slide-node {
            position: absolute;
            top: 0; left: 0; width: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            font-size: 13px;
            color: var(--text-black);
        }

        .unequal-text-slide-node.is-visible {
            opacity: 1;
        }

        .unequal-slider-nav-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .unequal-arrow-controls button {
            background: transparent;
            border: none;
            font-size: 18px;
            cursor: pointer;
            padding: 5px;
            margin-right: 10px;
            color: var(--text-black);
        }

        .unequal-slider-indicator-dots {
            display: flex;
            gap: 8px;
        }

        .indicator-dot-unit {
            width: 7px;
            height: 7px;
            background: rgba(0,0,0,0.2);
            border-radius: 50%;
        }

        .indicator-dot-unit.is-filled {
            background: var(--text-black);
        }

        /* --- SECTION 8: HEIGHTED CAPTIONED GALLERY --- */
        .heighted-gallery-block {
            position: relative;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .heighted-gallery-four-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .heighted-card-item {
            position: relative;
            height: 550px;
            overflow: hidden;
        }

        .heighted-card-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .heighted-card-item:hover img {
            transform: scale(1.06);
        }

        .heighted-card-caption-box {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 35px 20px;
        }

        .heighted-card-caption-box h4 {
            font-size: 14px;
            color: var(--text-white);
            margin-bottom: 5px;
        }

        .heighted-card-caption-box p {
            font-size: 11px;
            color: rgba(255,255,255,0.7);
        }

        /* --- SECTION 9 & INNER UNIVERSAL FORM FIELDS --- */
        .newsletter-form-block {
            position: relative;
            width: 100%;
            padding: 100px 40px;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .newsletter-dark-overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
           
            z-index: 1;
        }

        .editorial-form-envelope {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 600px;
            text-align: center;
        }

        .editorial-form-envelope h2 {
            font-size: 26px;
            margin-bottom: 30px;
        }

        .editorial-input-field-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 35px;
            text-align: left;
        }

        .editorial-input-unit {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding: 14px 5px;
            color: var(--text-white);
            font-size: 13px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .editorial-input-unit:focus {
            border-bottom-color: var(--accent);
        }

        .light-bg-input {
            color: var(--text-black) !important;
            border-bottom-color: rgba(0,0,0,0.2) !important;
        }
        .light-bg-input:focus {
            border-bottom-color: var(--accent) !important;
        }

        .dual-buttons-row {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .editorial-action-btn {
            background: transparent;
            border: 1px solid var(--text-white);
            color: var(--text-white);
            padding: 15px 35px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .editorial-action-btn:hover {
            background-color: var(--text-white);
            color: var(--text-black);
        }

        .editorial-action-btn.is-accented-btn {
            background-color: var(--accent);
            border-color: var(--accent);
        }
        .editorial-action-btn.is-accented-btn:hover {
            background-color: var(--text-black);
            color: var(--text-white);
            border-color: var(--text-white);
        }

        .form-response-log-message {
            margin-top: 25px;
            font-size: 12px;
            display: none;
            letter-spacing: 0.1em;
        }

        /* --- GLOBAL FOOTER EMBED --- */
        .universal-editorial-footer {
            position: relative;
            width: 100%;
            padding: 80px 40px 40px 40px;
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .universal-editorial-footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.92);
            z-index: 1;
        }

        .footer-inner-alignment {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .footer-brand-logo {
            font-size: 24px;
            font-weight: bold;
        }

        .footer-navigation-map, .footer-legal-sublinks {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-navigation-map a, .footer-legal-sublinks a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 11px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-navigation-map a:hover, .footer-legal-sublinks a:hover {
            color: var(--accent);
        }

        .footer-social-icons-row {
            display: flex;
            gap: 25px;
        }

        .footer-social-icons-row a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 12px;
        }

        .footer-copyright-mark {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
            margin-top: 15px;
        }

        /* --- INNER PAGES SPECIFIC COMPONENT BLOCKS --- */
        .inner-hero-header-block {
            position: relative;
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .inner-hero-header-block h1 {
            position: relative;
            z-index: 5;
            font-size: 38px;
            color: var(--text-white);
        }

        .inner-split-narrative-row {
            display: flex;
            width: 100%;
            background-color: var(--bg-light);
            color: var(--text-black);
        }

        .narrative-left-text {
            flex: 1;
            padding: 80px 50px;
            display: flex;
            align-items: center;
        }

        .narrative-left-text p {
            font-size: 15px;
            color: var(--text-black);
            line-height: 1.8;
        }

        .narrative-left-text p span.editorial-highlight {
            color: var(--accent);
            font-weight: bold;
        }

        .narrative-right-photo {
            flex: 1;
            background-size: cover;
            background-position: center;
            min-height: 480px;
        }

        /* 3 Equal Columns Block (About Unique Layout) */
        .triple-no-gap-block {
            display: flex;
            width: 100%;
        }

        .triple-color-column-unit {
            flex: 1;
            background-color: var(--accent-alt);
            color: var(--text-black);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            text-align: center;
        }

        .triple-color-column-unit h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .triple-color-column-unit .quad-thumb-img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .triple-bg-image-column-unit {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding-bottom: 30px;
        }

        .triple-bg-image-column-unit .bottom-centered-caption {
            font-size: 11px;
            color: var(--text-white);
            background: rgba(0,0,0,0.7);
            padding: 8px 16px;
        }

        /* Generic Editorial Structured Containers for Inner Content */
        .generic-editorial-container {
            background-color: var(--bg-primary);
            padding: 80px 50px;
        }

        .generic-editorial-container.has-light-theme {
            background-color: var(--bg-light);
            color: var(--text-black);
        }

        .centered-section-header-set {
            text-align: center;
            margin-bottom: 60px;
        }

        .centered-section-header-set h2 {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .centered-section-header-set p {
            font-size: 12px;
            max-width: 550px;
            margin: 0 auto;
            color: rgba(255,255,255,0.6);
        }

        .has-light-theme .centered-section-header-set p {
            color: rgba(0,0,0,0.6);
        }

        .three-column-text-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .text-card-item {
            background: rgba(255,255,255,0.02);
            padding: 35px;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .has-light-theme .text-card-item {
            background: rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.06);
        }

        .text-card-item h3 {
            font-size: 16px;
            margin-bottom: 12px;
            color: var(--accent);
        }

        .text-card-item p {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
        }

        .has-light-theme .text-card-item p {
            color: rgba(0,0,0,0.7);
        }

        /* Tabular Component Framework (Prices Unique) */
        .table-responsive-wrapper {
            width: 100%;
            overflow-x: auto;
            margin-top: 50px;
        }

        .editorial-data-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .editorial-data-table th, .editorial-data-table td {
            padding: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 12px;
        }

        .editorial-data-table th {
            color: var(--accent);
        }

        /* Document Rich Text Block Framework (Privacy Policy Unique) */
        .document-editorial-wrapper {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .document-block-node h3 {
            font-size: 16px;
            color: var(--accent);
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 6px;
        }

        .document-block-node p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            text-transform: none; /* Keep text natural for real documents */
        }

        /* Contact Details Page Split Columns Layout */
        .contact-split-architecture {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
        }

        .contact-info-directory-panel {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-data-block-unit h4 {
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 6px;
        }

        .contact-data-block-unit p {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
        }


        /* --- GLOBAL INNER STICKY NAVIGATION --- */
.inner-page-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--bg-light);
    z-index: 900;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.inner-logo a {
    color: var(--text-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.inner-navigation-links {
    display: flex;
    gap: 35px;
    align-items: center;
    z-index: 950;
    position: relative;
}

.inner-navigation-links a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 2px;
    z-index: 951;
    position: relative;
}

.inner-navigation-links a:hover {
    color: var(--accent) !important;
}

.inner-navigation-links a.active-route {
    color: var(--accent) !important;
    border-bottom: 1px solid var(--accent);
}

.inner-hamburger-trigger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 25px;
    z-index: 950;
    position: relative;
}

.inner-hamburger-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
}
        /* --- RESPONSIVE CONFIGURATIONS --- */
        @media (max-width: 1024px) {
            .editorial-sidebar { display: none; }
            .home-layout-wrapper { margin-left: 0; width: 100%; }
            .inner-hamburger-trigger { display: flex; }
            .inner-navigation-links { display: none; }
            
            .split-marquee-block, .storytelling-split-container, .split-contrast-block, .three-unequal-grid, .inner-split-narrative-row, .triple-no-gap-block, .contact-split-architecture {
                flex-direction: column;
                grid-template-columns: 1fr !important;
            }
            .gallery-four-grid, .staggered-four-column-grid, .heighted-gallery-four-grid, .two-row-panels-container, .three-column-text-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .staggered-image-node.down-shift { margin-top: 0; }
            .triple-color-column-unit, .unequal-panel-right-sage { height: auto; min-height: initial; }
            .card-editorial-panel-cover { width: 100%; }
        }

        @media (max-width: 600px) {
            .gallery-four-grid, .staggered-four-column-grid, .heighted-gallery-four-grid, .two-row-panels-container, .three-column-text-grid {
                grid-template-columns: 1fr !important;
            }
            .hero-title-architecture h1 { font-size: 32px; }
            .inner-page-header { padding: 20px; }
            .staggered-header-row { flex-direction: column; gap: 20px; }
            .dual-buttons-row { flex-direction: column; width: 100%; }
            .editorial-action-btn { width: 100%; }
        }
