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

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

    body {
        overflow-x: hidden;
    }

    img {
        display: block;
        max-width: 100%;
    }

    ::selection {
        background: #C17F59;
        color: #FDF6EE;
    }

    /* ===== NAVBAR ===== */
    #navbar {
        background: transparent;
        transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
    }

    #navbar.scrolled {
        background: rgba(253, 246, 238, 0.97);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 0 rgba(193, 127, 89, 0.1);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: #C17F59;
        transition: width 0.3s ease;
    }

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

    /* ===== MOBILE MENU ===== */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }

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

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

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

    /* ===== HERO CONTENT ===== */
    .hero-content {
        opacity: 1;
    }

    /* ===== 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);
        }
    }

    /* ===== IMAGE HOVER ===== */
    .group:hover .group-hover\:scale-105 {
        transform: scale(1.05);
    }

    /* ===== FORM STYLES ===== */
    input:focus,
    select:focus,
    textarea:focus {
        box-shadow: 0 0 0 3px rgba(193, 127, 89, 0.15);
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #FDF6EE;
    }

    ::-webkit-scrollbar-thumb {
        background: #DEAA88;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #C17F59;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 767px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

    @media (min-width: 768px) {
        .hero-content h1 {
            font-size: 3.5rem;
        }
    }

    @media (min-width: 1024px) {
        .hero-content h1 {
            font-size: 4rem;
        }
    }
