    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #1A070A;
    }
    ::-webkit-scrollbar-thumb {
        background: #7B2D3B;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #b82242;
    }

    /* Selection */
    ::selection {
        background: #C9A96E;
        color: #1A070A;
    }

    /* Header scroll state */
    #header.scrolled {
        background: rgba(26, 7, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Fade-in animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }
    .fade-in:nth-child(2) { animation-delay: 0.15s; }
    .fade-in:nth-child(3) { animation-delay: 0.3s; }
    .fade-in:nth-child(4) { animation-delay: 0.45s; }

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

    /* Service cards */
    .service-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.06) 100%);
        backdrop-filter: blur(10px);
    }

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

    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    #mobileMenu.active .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }
    #mobileMenu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobileMenu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* Menu button animation */
    #menuBtn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menuBtn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menuBtn.active .menu-line:nth-child(3) {
        width: 20px;
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Intersection observer animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
        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 effect on hover for CTA */
    a[href="#contact"], a[href="tel:5012852080"] {
        position: relative;
        overflow: hidden;
    }

    /* Image hover zoom */
    .aspect-\[4\/5\] img,
    .rounded-2xl.overflow-hidden img {
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .aspect-\[4\/5\]:hover img,
    .rounded-2xl.overflow-hidden:hover img {
        transform: scale(1.05);
    }

    /* Form focus styles */
    input:focus, textarea:focus {
        background: rgba(255, 255, 255, 0.08) !important;
    }

    /* Smooth transitions for all interactive elements */
    a, button {
        transition: all 0.3s ease;
    }

    /* Subtle grain overlay */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        opacity: 0.015;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        background-repeat: repeat;
        z-index: 9999;
    }
