        :root {
            --accent: #A03A13;
            --bg: #000000;
            --text: #FFFFFF;
            --subtle: rgba(160, 58, 19, 0.3);
        }

        /* Base Setup */
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .neonderthaw {
            font-family: 'Neonderthaw', cursive;
            color: var(--accent);
            text-shadow: 0 0 15px rgba(160, 58, 19, 0.6);
        }

        /* Navigation Circle Buttons */
        .circle-btn {
            padding: 10px 22px;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            background: transparent;
            color: white;
            white-space: nowrap;
        }
        .circle-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: scale(1.08);
            box-shadow: 0 0 15px rgba(160, 58, 19, 0.2);
        }

        .logo-circle {
            padding: 10px 22px;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            background: transparent;
            color: white;
            white-space: nowrap;
        }
        .logo-circle:hover {
            background: var(--accent);
            color: #000;
            box-shadow: 0 0 25px var(--accent);
        }

        /* Slideshow Container */
        .hero-slideshow {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #050505;
            box-shadow: 0 10px 50px rgba(160, 58, 19, 0.15);
        }
        .slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out, transform 6s ease-out;
            transform: scale(1.1);
        }
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Dot Nav */
        .dot-nav {
            position: fixed;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: 0.3s;
            cursor: pointer;
        }
        .dot.active {
            background: var(--accent);
            transform: scale(1.8);
            box-shadow: 0 0 10px var(--accent);
        }

        /* Section Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: 1s cubic-bezier(0.2, 0, 0, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: var(--accent); }

        /* Project Cards */
        .project-card {
            border: 1px solid rgba(160, 58, 19, 0.1);
            transition: 0.5s;
            overflow: hidden;
        }
        .project-card:hover {
            border-color: var(--accent);
        }
        .project-card img { transition: 1.5s ease; }
        .project-card:hover img { transform: scale(1.1); }

        /* Materials */
        .material-swatch {
            aspect-ratio: 1;
            background: #080808;
            border: 1px solid rgba(255,255,255,0.05);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: 0.4s;
        }
        .material-swatch:hover {
            border-color: var(--accent);
            background: #0a0a0a;
        }

        /* Forms */
        input, textarea {
            background: transparent;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 15px 0;
            width: 100%;
            outline: none;
            transition: 0.3s;
        }
        input:focus, textarea:focus {
            border-color: var(--accent);
        }

        /* Animated Progress */
        #hero-timer {
            height: 2px;
            background: var(--accent);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
        }
    