        :root {
            --bg-neutral: #67671e;
            --bg-textured: #ff7171;
            --text-dark: #3b2b2b;
            --text-muted: #d2dfad;
            --border-color: #8d8d0b;
            --dark-footer: #151515;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-neutral);
            color: var(--text-dark);
            font-family: var(--font-sans);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography Schemas */
        h1, h2, h3, .editorial-title {
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.1;
        }

        p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-muted);
            font-weight: 300;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Layout Archetypes */
        .editorial-section {
            padding: 140px 8%;
            position: relative;
            width: 100%;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 32px;
            border: 1px solid var(--text-dark);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-smooth);
            background: transparent;
        }

        .cta-button:hover {
            background: var(--text-dark);
            color: #ffffff;
        }

        /* Minimal Header Grid */
        header {
            position: fixed;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            padding: 30px 8%;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            z-index: 1000;
            transition: var(--transition-smooth);
            background: transparent;
        }

        header.scrolled {
            background: rgba(249, 249, 246, 0.95);
            padding: 20px 8%;
            border-bottom: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }

        .logo-container img {
            height: 154px;
            object-fit: contain;
            margin-top:-3rem;
        }

        .nav-center {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-center a {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            position: relative;
            padding-bottom: 4px;
            margin-top: -8rem;

        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--text-dark);
            transition: var(--transition-smooth);
        }

        .nav-center a:hover::after {
            width: 100%;
        }

        .header-right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: inherit;
            margin-top: -3rem;

        }

        /* Mobile Slide Menu Drawer */
        .mobile-menu-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--bg-neutral);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            transition: var(--transition-smooth);
        }

        .mobile-menu-drawer.active {
            right: 0;
        }

        .mobile-menu-drawer a {
            font-family: var(--font-editorial);
            font-size: 2rem;
            text-transform: uppercase;
        }

        .close-drawer {
            position: absolute;
            top: 30px;
            right: 8%;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
        }

        /* SPA Nav Switcher Node Rules */
        .page-node {
            display: none;
        }

        .page-node.active-node {
            display: block;
        }

        /* HERO LAYER WITH SCREEN VIDEO BACKGROUND */
        .video-hero-viewport {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 8%;
        }

        .video-hero-viewport video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-hero-viewport::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.2));
            z-index: 2;
        }

        .hero-editorial-content {
            position: relative;
            z-index: 3;
            max-width: 650px;
            color: #ffffff;
        }

        .hero-editorial-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .hero-editorial-content p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .hero-btn-cluster {
            display: flex;
            gap: 20px;
        }

        .hero-btn-cluster .cta-button {
            border-color: #ffffff;
            color: #ffffff;
        }

        .hero-btn-cluster .cta-button:hover {
            background: #ffffff;
            color: var(--text-dark);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 8%;
            z-index: 3;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255,255,255,0.6);
        }

        /* SECTION 2 — EDITORIAL INTRO */
        .intro-flex-container {
            display: flex;
            align-items: center;
            gap: 10%;
        }

        .intro-text-block {
            flex: 1;
            max-width: 500px;
        }

        .intro-text-block h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
        }

        .intro-image-block {
            flex: 1;
            overflow: hidden;
        }

        .intro-image-block img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 1.2s ease;
        }

        .intro-image-block:hover img {
            transform: scale(1.05);
        }

        /* SECTION 3 — FEATURED SERVICES (EDITORIAL LIST STYLE) */
        .editorial-list-container {
            margin-top: 60px;
        }

        .editorial-list-row {
            display: grid;
            grid-template-columns: 80px 1fr 2fr;
            padding: 40px 0;
            border-bottom: 1px solid var(--border-color);
            align-items: center;
            transition: var(--transition-smooth);
        }

        .editorial-list-row:hover {
            padding-left: 20px;
            background: rgba(0,0,0,0.01);
        }

        .row-number {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .row-title {
            font-size: 1.8rem;
        }

        /* SECTION 4 — PROJECT SHOWCASE (GRID, BUT EDITORIAL) */
        .masonry-editorial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .project-tile-node {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .project-tile-node img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition-smooth);
        }

        .project-overlay-data {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: #ffffff;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .project-tile-node:hover .project-overlay-data {
            opacity: 1;
        }

        .project-tile-node:hover img {
            transform: scale(1.04);
        }

        /* SECTION 5 — VIDEO STORY SECTION */
        .split-story-universe {
            display: flex;
            gap: 8%;
            align-items: flex-start;
        }

        .story-video-container {
            flex: 1;
            position: sticky;
            top: 140px;
            height: 500px;
            overflow: hidden;
        }

        .story-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-text-container {
            flex: 1;
            padding-top: 60px;
        }

        .story-text-container h2 {
            font-size: 3rem;
            margin-bottom: 30px;
        }

        /* SECTION 6 — DESIGN PHILOSOPHY */
        .philosophy-centered-stage {
            background-color: var(--bg-textured);
            text-align: center;
            padding: 160px 15%;
        }

        .philosophy-centered-stage h2 {
            font-size: 3.2rem;
            line-height: 1.4;
            max-width: 900px;
            margin: 0 auto;
        }

        /* SECTION 7 — BEFORE / AFTER FEATURE */
        .comparison-slider-frame {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            margin-top: 40px;
        }

        .before-after-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .img-layer-after {
            background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=80');
            z-index: 1;
        }

        .img-layer-before {
            background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1600&q=80');
            z-index: 2;
            width: 50%;
            border-right: 2px solid #ffffff;
        }

        .interactive-range-control {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 3;
            cursor: ew-resize;
        }

        /* SECTION 8 — TESTIMONIAL EDITORIAL BLOCK */
        .testimonial-slider-chamber {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            min-height: 200px;
        }

        .testimonial-quote-node {
            font-family: var(--font-editorial);
            font-size: 2.2rem;
            line-height: 1.4;
            font-style: italic;
            display: none;
        }

        .testimonial-quote-node.active-quote {
            display: block;
            animation: fadeIn 1s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* SECTION 9 — SUBSCRIBE / CONSULTATION */
        .minimal-form-box {
            background: var(--bg-textured);
            max-width: 900px;
            margin: 0 auto;
            padding: 80px;
        }

        .form-grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .editorial-input-field {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--text-dark);
            padding: 15px 0;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            outline: none;
        }

        /* FOOTER COMPONENT */
        footer {
            background: var(--dark-footer);
            color: #ffffff;
            padding: 100px 8% 50px 8%;
        }

        .footer-main-columns {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-links-list a {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
        }

        .footer-links-list a:hover {
            color: #ffffff;
        }

        /* RESPONSIVE LAYOUT MATRIX */
        @media (max-width: 1024px) {
            header .nav-center, header .header-right .cta-button {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .intro-flex-container, .split-story-universe {
                flex-direction: column;
                gap: 50px;
            }
            .story-video-container {
                position: relative;
                top: 0;
                width: 100%;
                height: 350px;
            }
            .editorial-list-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .masonry-editorial-grid, .form-grid-layout, .footer-main-columns {
                grid-template-columns: 1fr;
            }
            .minimal-form-box {
                padding: 40px 20px;
            }
            .hero-editorial-content h1 {
                font-size: 2.8rem;
            }
        }
