        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --industry-dark: #1b1b1b;
            --industry-cream: #f5f1ed;
            --industry-accent: #fe8300;
            --industry-muted: #666;
            --industry-surface: #2a2a2a;
            --industry-ember: #e74c3c;
            --transition-duration: 0.3s;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--industry-dark);
            background-color: var(--industry-cream);
            overflow-x: hidden;
        }

        /* ========================================
           NAVIGATION / NAV
           ======================================== */

        nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: black;
            backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1rem;
            border-bottom: 1px solid rgba(27, 27, 27, 0.05);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        @media (min-width: 640px) {
            nav {
                padding: 1.25rem 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            nav {
                padding: 2rem 5rem;
            }
        }

        /* ========================================
           LOGO SECTION
           ======================================== */

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            text-decoration: none;
            color: var(--industry-dark);
            min-width: 0;
            flex-shrink: 0;
        }

        .logo-box {
            width: 2rem;
            height: 2rem;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.25rem;
            flex-shrink: 0;
        }

        @media (min-width: 1024px) {
            .logo-box {
                width: 2.5rem;
                height: 2.5rem;
                
            }
        }

        .logo-box img {
           
            height: 70px;
            object-fit: contain;
            margin-left:30px;
        }

        .brand-text {
            color: white;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.05em;
        }

        .brand-light {
            color: #999;
            font-weight: 300;
        }

        /* ========================================
           HAMBURGER MENU ICON
           ======================================== */

        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: 0.375rem;
            background: none;
            border: none;
            padding: 0.5rem;
            z-index: 51;
        }

        .hamburger span {
            width: 1.5rem;
            height: 0.25rem;
            background-color: white;
            border-radius: 0.125rem;
            transition: all var(--transition-duration) ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(0.6rem, 0.6rem);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(0.4rem, -0.4rem);
        }

        @media (min-width: 1024px) {
            .hamburger {
                display: none;
            }
        }

        /* ========================================
           NAVIGATION LINKS
           ======================================== */

        .nav-links {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(12px);
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 7rem 2rem 2rem 2rem;
            transform: translateX(-100%);
            transition: transform var(--transition-duration) ease;
            z-index: 49;
        }

        .nav-links.active {
            transform: translateX(0);
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.125rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color var(--transition-duration) ease;
            padding: 0.75rem 0;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover {
            color: var(--industry-accent);
            border-bottom-color: var(--industry-accent);
        }

        @media (min-width: 480px) {
            .nav-links {
                padding: 7rem 2rem 2rem 2rem;
                gap: 2.5rem;
                 
            }

            .nav-links a {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 1024px) {
            .nav-links {
                position: static;
                width: auto;
                height: auto;
                background-color: transparent;
                backdrop-filter: none;
                display: flex;
                flex-direction: row;
                gap: 2.5rem;
                padding: 0;
                transform: translateX(0);
                z-index: 50;
            }

            .nav-links a {
                font-size: 0.75rem;
                text-transform: uppercase;
                letter-spacing: 0.15em;
                padding: 0;
                border-bottom: none;
            }

            .nav-links a:hover {
                color: var(--industry-accent);
                border-bottom: none;
            }
        }

        /* ========================================
           BODY SCROLL LOCK (when mobile menu open)
           ======================================== */

        body.menu-open {
            overflow: hidden;
        }
