        :root {
            --primary-accent: #C14600;
            --cream-bg: #FEF9E1;
            --white: #FFFFFF;
            --black: #111111;
            --soft-gray: #F5F5F5;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arimo', sans-serif;
            background-color: var(--cream-bg);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Common Scannable Structures */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.15;
        }

        p {
            font-weight: 400;
            font-size: 1.1rem;
            line-height: 1.65;
            color: rgba(17, 17, 17, 0.85);
        }

        .label-caps {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-accent);
            display: inline-block;
            margin-bottom: 12px;
        }

        section {
            padding: 120px 60px;
            position: relative;
        }

        .img-editorial {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(15%);
            transition: transform 0.8s ease;
        }

        .img-editorial-wrapper {
            overflow: hidden;
            background-color: var(--soft-gray);
        }

        .img-editorial-wrapper:hover .img-editorial {
            transform: scale(1.03);
        }

        /* Premium Buttons */
        .btn-editorial {
            display: inline-block;
            padding: 16px 36px;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: 2px solid var(--black);
            background-color: var(--black);
            color: var(--white);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-editorial:hover {
            background-color: transparent;
            color: var(--black);
        }

        .btn-editorial.light-variant {
            border-color: var(--white);
            background-color: var(--white);
            color: var(--black);
        }

        .btn-editorial.light-variant:hover {
            background-color: transparent;
            color: var(--white);
        }

        /* Sticky Navigation Architecture */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background-color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
            z-index: 1000;
            border-bottom: 1px solid rgba(17, 17, 17, 0.08);
        }

        .logo-box img {
            height: 210px;
            width: auto;
            object-fit: contain;
            margin-top: 3rem;
            display: block;
        }

        .nav-links-container {
            display: flex;
            gap: 40px;
        }

        .nav-links-container a {
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--black);
            position: relative;
            padding: 6px 0;
        }

        /* Animated underline grows from left to right */
        .nav-links-container a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-accent);
            transition: width 0.3s ease;
        }

        .nav-links-container a:hover::after,
        .nav-links-container a.active-link::after {
            width: 100%;
        }

        /* Hamburger Control */
        .hamburger-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background-color: var(--black);
            transition: 0.3s ease;
        }

        .mobile-overlay-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--white);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            gap: 30px;
            transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-overlay-drawer.expanded {
            right: 0;
        }

        .mobile-overlay-drawer a {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
        }

        /* Engine Framework for Multi-page Switcher */
        .editorial-page-node {
            display: none;
            margin-top: 80px;
        }

        .editorial-page-node.visible-node {
            display: block;
        }

    /* Hero Specific Styles */
    .home-hero-split {
        height: calc(100vh - 80px);
        display: flex;
        padding: 0;
        background-color: var(--white);
        margin-top: 80px;
    }

    .hero-left-pane {
        width: 55%;
        height: 100%;
    }

    .hero-right-pane {
        width: 45%;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .hero-right-top {
        flex: 1;
        background-color: var(--white);
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-right-top h1 {
        font-size: 3.5rem;
        color: var(--black);
        margin: 15px 0 25px;
        line-height: 1.15;
    }

    .hero-right-top p {
        margin-bottom: 35px;
        max-width: 480px;
    }

    .hero-right-bottom {
        height: 35%;
        background-color: var(--primary-accent);
        color: var(--white);
        padding: 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-right-bottom p {
        color: var(--white);
        font-size: 1.15rem;
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .hero-right-bottom p:last-child {
        margin-bottom: 0;
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .home-hero-split {
            flex-direction: column;
            height: auto;
            margin-top: 80px;
        }
        
        .hero-left-pane {
            width: 100%;
            height: 45vh;
        }
        
        .hero-right-pane {
            width: 100%;
        }
        
        .hero-right-top {
            padding: 40px 30px;
        }
        
        .hero-right-top h1 {
            font-size: 2.8rem;
        }
        
        .hero-right-bottom {
            padding: 40px 30px;
            height: auto;
        }
    }

    @media (max-width: 600px) {
        .hero-right-top h1 {
            font-size: 2rem;
        }
        
        .hero-right-bottom p {
            font-size: 1rem;
        }
    }
        /* Section 02 - Core Financial Principles */
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .luxurious-tall-card {
            background-color: var(--primary-accent);
            color: var(--white);
            padding: 60px 40px;
            min-height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
        }

        .luxurious-tall-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(193, 70, 0, 0.25);
        }

        .luxurious-tall-card h3 {
            font-size: 2.2rem;
            color: var(--white);
        }

        .luxurious-tall-card blockquote {
            font-style: italic;
            font-size: 1.05rem;
            opacity: 0.9;
            border-left: 2px solid var(--white);
            padding-left: 15px;
            line-height: 1.5;
        }

        /* Section 03 - Wealth Building Editorial */
        .wealth-editorial-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .wealth-editorial-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .editorial-square-wrapper {
            width: 260px;
            height: 260px;
        }

        .wealth-editorial-right-img {
            height: 750px;
            width: 100%;
        }

        /* Section 04 - The Journey Framework */
        .timeline-horizontal-track {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 80px;
            position: relative;
            padding: 0 20px;
        }

        .timeline-node-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 12%;
        }

        .timeline-indicator-num {
            width: 50px;
            height: 50px;
            background-color: var(--black);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
            transition: background-color 0.3s;
        }

        .timeline-node-item:hover .timeline-indicator-num {
            background-color: var(--primary-accent);
        }

        .timeline-node-item h4 {
            font-size: 1.15rem;
            text-transform: uppercase;
        }

        .timeline-arrow-divider {
            font-size: 1.5rem;
            color: var(--primary-accent);
            font-weight: 700;
        }

        /* Section 05 - Featured Insights */
        #sec-featured-insights {
            background-color: var(--primary-accent);
            color: var(--white);
        }

        .insights-editorial-grid {
            display: grid;
            grid-template-columns: repeat(3, 2fr);
            grid-template-rows: repeat(2, auto);
            gap: 50px;
            margin-top: 60px;
        }

        .insight-editorial-block {
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            padding-top: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 220px;
        }

        .insight-editorial-block h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin: 10px 0;
        }

        .insight-editorial-block p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .insight-readmore {
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            text-decoration: none;
            letter-spacing: 1px;
            display: inline-block;
            align-self: flex-start;
        }

        .insight-readmore:hover {
            text-decoration: underline;
        }

        /* Section 06 - Fixed Image Feature */
        .fixed-parallax-section {
            height: 70vh;
            background-image: url('https://i.pinimg.com/736x/1b/1c/99/1b1c9944c5ec7a295886b00b11f8a3ad.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .fixed-parallax-quote-box {
            text-align: center;
            color: var(--white);
            padding: 40px;
            background-color: rgba(17, 17, 17, 0.4);
            backdrop-filter: blur(8px);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .fixed-parallax-quote-box h2 {
            font-size: 4rem;
            color: var(--white);
        }

        /* Section 07 - Financial Categories (Asymmetric Layout) */
        .asymmetric-categories-container {
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .asymmetric-category-row {
            display: flex;
            gap: 40px;
        }

        .asymmetric-category-row:nth-child(1) .cat-box:nth-child(1) { width: 65%; background-color: var(--soft-gray); }
        .asymmetric-category-row:nth-child(1) .cat-box:nth-child(2) { width: 35%; background-color: var(--cream-bg); }
        .asymmetric-category-row:nth-child(2) .cat-box:nth-child(1) { width: 40%; background-color: var(--cream-bg); }
        .asymmetric-category-row:nth-child(2) .cat-box:nth-child(2) { width: 60%; background-color: var(--soft-gray); }

        .cat-box {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
            border-left: 4px solid var(--primary-accent);
        }

        .cat-box h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        /* Section 08 - Client Success Stories */
        .testimonials-magazine-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .testimonial-editorial-card {
            background: var(--white);
            padding: 50px;
            border: 1px solid rgba(17,17,17,0.05);
            position: relative;
        }

        .giant-quote-mark {
            font-family: 'Arimo', sans-serif;
            font-size: 6rem;
            line-height: 1;
            color: var(--primary-accent);
            opacity: 0.15;
            position: absolute;
            top: 20px;
            left: 30px;
        }

        .testimonial-editorial-card blockquote {
            font-size: 1.25rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .testimonial-author-meta {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Section 09 - Financial Resources */
        .resources-editorial-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .resource-grid-item {
            background-color: var(--soft-gray);
            display: flex;
            flex-direction: column;
        }

        .resource-grid-item .img-editorial-wrapper {
            height: 220px;
        }

        .resource-item-body {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .resource-item-body h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Section 10 - Newsletter Hub */
        .newsletter-hub-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 80px;
            align-items: center;
        }

        .newsletter-left-graphic-wrapper {
            height: 480px;
        }

        .newsletter-form-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .newsletter-form-segment h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .editorial-inline-form {
            display: flex;
            gap: 15px;
        }

        .editorial-inline-form input[type="email"] {
            flex-grow: 1;
            padding: 16px;
            border: 1px solid rgba(17, 17, 17, 0.2);
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            background-color: var(--white);
        }

        .editorial-inline-form input[type="email"]:focus {
            border-color: var(--primary-accent);
        }

        /* Section 11 - Contact Strategy Block */
        #sec-contact-strategy {
            background-color: var(--primary-accent);
            color: var(--white);
            text-align: center;
            padding: 100px 60px;
        }

        #sec-contact-strategy h2 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        #sec-contact-strategy p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* FOOTER MODULE */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 80px 60px 40px;
        }

        .footer-monumental-text {
            width: 100%;
            text-align: center;
            margin-bottom: 60px;
        }

        .footer-marquee-stroke {
            font-size: 8.5vw;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
            letter-spacing: -2px;
            line-height: 1;
            text-transform: uppercase;
        }

        .footer-columns-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-column-block h5 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            color: var(--primary-accent);
        }

        .footer-column-block ul {
            list-style: none;
        }

        .footer-column-block ul li {
            margin-bottom: 12px;
        }

        .footer-column-block ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-column-block ul li a:hover {
            color: var(--white);
        }

        .footer-bottom-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ABOUT PAGE MODULES */
        .about-portrait-hero {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 80px;
            align-items: center;
            background-color: var(--white);
        }

        .about-hero-image-pane {
            height: 650px;
        }

        .about-hero-text-pane h1 {
            font-size: 4rem;
            margin-bottom: 30px;
        }

        .about-modular-chapters {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .about-chapter-card {
            background-color: var(--white);
            padding: 45px;
            border-bottom: 4px solid var(--primary-accent);
        }

        .about-chapter-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        /* SERVICES PAGE MODULES */
        .services-premium-hero {
            background-color: var(--primary-accent);
            color: var(--white);
            text-align: center;
            padding: 140px 60px;
        }

        .services-premium-hero h1 {
            font-size: 4.5rem;
            color: var(--white);
            max-width: 900px;
            margin: 0 auto;
        }

        .services-stack-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .services-stack-row {
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 60px;
            background-color: var(--white);
            padding: 50px;
            align-items: flex-start;
        }

        .services-stack-row h2 {
            font-size: 2.2rem;
            color: var(--primary-accent);
        }

        /* RESOURCES PAGE MODULES */
        .resources-newspaper-layout {
            display: grid;
            grid-template-columns: 8fr 4fr;
            gap: 60px;
        }

        .newspaper-main-stream {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .newspaper-feature-post h2 {
            font-size: 2.8rem;
            margin: 20px 0 15px;
        }

        .newspaper-feature-post .wide-img-wrapper {
            height: 450px;
            width: 100%;
        }

        .newspaper-sidebar-stream {
            border-left: 1px solid rgba(17, 17, 17, 0.1);
            padding-left: 40px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .sidebar-article-node {
            border-bottom: 1px solid rgba(17, 17, 17, 0.08);
            padding-bottom: 25px;
        }

        .sidebar-article-node h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* CONTACT PAGE MODULES */
        .contact-split-workspace {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 80px;
        }

        .contact-left-visual {
            height: 700px;
        }

        .contact-right-form-panel {
            background-color: var(--white);
            padding: 60px;
        }

        .contact-right-form-panel h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .contact-form-scaffolding {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 40px;
        }

        .contact-field-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-field-group label {
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-field-group input, .contact-field-group textarea {
            padding: 14px;
            border: 1px solid rgba(17, 17, 17, 0.15);
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            background-color: var(--soft-gray);
        }

        .contact-field-group input:focus, .contact-field-group textarea:focus {
            border-color: var(--primary-accent);
            background-color: var(--white);
        }

        /* LEGAL CONTENT FRAME */
        .legal-editorial-container {
            max-width: 800px;
            margin: 60px auto;
            background-color: var(--white);
            padding: 60px;
            border-top: 4px solid var(--primary-accent);
        }

        .legal-editorial-container h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .legal-editorial-container h3 {
            font-size: 1.5rem;
            margin-top: 35px;
            margin-bottom: 15px;
        }

        .legal-editorial-container p {
            margin-bottom: 20px;
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 1100px) {
            section { padding: 80px 30px; }
            nav { padding: 0 30px; }
            .nav-links-container { display: none; }
            .hamburger-toggle { display: flex; }

            .home-hero-split { flex-direction: column; height: auto; }
            .hero-left-pane { width: 100%; height: 45vh; }
            .hero-right-pane { width: 100%; }
            .hero-right-top { padding: 40px 30px; }
            .hero-right-bottom { padding: 40px 30px; }

            .principles-grid, .insights-editorial-grid, .asymmetric-category-row,
            .testimonials-magazine-grid, .resources-editorial-grid, .newsletter-hub-layout,
            .about-portrait-hero, .about-modular-chapters, .services-stack-row,
            .resources-newspaper-layout, .contact-split-workspace, .footer-columns-container {
                grid-template-columns: 1fr !important;
                flex-direction: column !important;
                gap: 40px;
            }

            .asymmetric-category-row .cat-box { width: 100% !important; }
            .timeline-horizontal-track { flex-direction: column; gap: 30px; }
            .timeline-node-item { width: 100%; }
            .timeline-arrow-divider { transform: rotate(90deg); margin: 10px 0; }
            
            .about-hero-image-pane { height: 350px; }
            .contact-left-visual { height: 350px; }
            .contact-right-form-panel { padding: 30px; }
            .footer-bottom-divider { flex-direction: column; gap: 15px; text-align: center; }
        }
