    /* Base & Typography */
    *, *::before, *::after {
        box-sizing: border-box;
    }

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

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(201, 168, 76, 0.3);
        color: #faf8f4;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f2920;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(201, 168, 76, 0.3);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(201, 168, 76, 0.5);
    }

    /* Navbar */
    #navbar {
        background: transparent;
        transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
    }

    #navbar.scrolled {
        background: rgba(15, 41, 32, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
    }

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

    .menu-line {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    #menu-btn.active .menu-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    #menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-btn.active .menu-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        width: 20px;
        margin-left: 0;
    }

    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #mobile-menu.active .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    #mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
    #mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
    #mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }

    /* Service Cards */
    .service-card {
        opacity: 1;
    }

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

    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
        }
        .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; }
        .reveal-delay-6 { transition-delay: 0.6s; }
    }

    /* Gold shimmer on hover for links */
    a {
        text-decoration: none;
    }

    /* Image loading placeholder */
    img {
        background: linear-gradient(135deg, #1a3d2f 0%, #0f2920 100%);
    }

    /* Focus styles */
    input:focus, textarea:focus {
        outline: none;
    }

    /* Subtle gold line decoration */
    .gold-line {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
    }
