    /* ===== Reset & Base ===== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(232, 115, 90, 0.3);
        color: #F5F0EB;
    }

    /* ===== Scrollbar ===== */
    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-track {
        background: #0d0d0d;
    }
    ::-webkit-scrollbar-thumb {
        background: #2e2e2e;
        border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #C9A84C;
    }

    /* ===== Navbar ===== */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(13, 13, 13, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, #E8735A, #C9A84C);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* ===== Mobile Menu ===== */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        font-size: 1.1rem;
    }

    .menu-line {
        transition: all 0.3s ease;
    }

    #menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    #menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    #menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 6px;
    }

    /* ===== Hero ===== */
    .hero-bg {
        transition: transform 8s ease;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(13,13,13,0.3) 0%, transparent 50%, rgba(13,13,13,0.1) 100%);
    }

    .hero-eyebrow {
        animation: fadeInUp 0.8s ease forwards 0.3s;
    }

    .hero-headline {
        animation: fadeInUp 0.8s ease forwards 0.5s;
    }

    .hero-sub {
        animation: fadeInUp 0.8s ease forwards 0.7s;
    }

    .hero-cta {
        animation: fadeInUp 0.8s ease forwards 0.9s;
    }

    .hero-scroll {
        animation: fadeIn 1s ease forwards 1.2s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Scroll line animation */
    .scroll-line {
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
        0%, 100% { opacity: 0.4; transform: scaleY(1); }
        50% { opacity: 0.1; transform: scaleY(0.6); transform-origin: top; }
    }

    /* ===== Service Cards ===== */
    .service-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .service-card:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(232, 115, 90, 0.05);
    }

    /* ===== Portfolio ===== */
    .portfolio-item {
        cursor: pointer;
    }

    .portfolio-item img {
        will-change: transform;
    }

    /* ===== Testimonials ===== */
    .testimonial-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.5s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    /* ===== Reveal Animations ===== */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal.delay-1 { transition-delay: 0.1s; }
    .reveal.delay-2 { transition-delay: 0.2s; }
    .reveal.delay-3 { transition-delay: 0.3s; }
    .reveal.delay-4 { transition-delay: 0.4s; }
    .reveal.delay-5 { transition-delay: 0.5s; }

    /* ===== Gold Shimmer ===== */
    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }

    /* ===== Input Focus ===== */
    input:focus, textarea:focus, select:focus {
        box-shadow: 0 0 0 1px rgba(232, 115, 90, 0.2);
    }

    /* ===== Form Select Styling ===== */
    select option {
        background: #1c1c1c;
        color: #F5F0EB;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .hero-bg {
            background-position: center;
        }

        #hero h1 {
            font-size: 2.8rem;
            line-height: 1.1;
        }

        @supports (font-size: clamp(2.5rem, 8vw, 4.5rem)) {
            #hero h1 {
                font-size: clamp(2.5rem, 8vw, 4.5rem);
            }
        }
    }

    /* ===== Print ===== */
    @media print {
        #navbar, .hero-scroll { display: none; }
        body { background: white; color: black; }
    }
