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

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        overflow-x: hidden;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-track {
        background: #faf8f6;
    }
    ::-webkit-scrollbar-thumb {
        background: #d4a0a0;
        border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #9b2335;
    }

    /* Selection */
    ::selection {
        background: #9b2335;
        color: #faf8f6;
    }

    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
    }

    @keyframes float-delayed {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }

    @keyframes scroll-line {
        0% { top: 0; opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

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

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Floating Cards */
    .floating-card {
        animation: float 6s ease-in-out infinite;
    }

    .floating-card:nth-child(2) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .floating-card:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 5s;
    }

    .floating-card:nth-child(4) {
        animation-delay: -1s;
        animation-duration: 8s;
    }

    /* Scroll Line */
    .animate-scroll-line {
        animation: scroll-line 1.5s ease-in-out infinite;
    }

    /* Fade In Up Animation */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Nav Scroll State */
    #navbar.scrolled {
        background: rgba(250, 248, 246, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(155, 35, 53, 0.08);
    }

    #navbar.scrolled .nav-link {
        color: #5a131c;
    }

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

    /* Mobile Menu Lines */
    #menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(2px, -2px);
        width: 1.25rem;
    }

    /* Mobile Links */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

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

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

    /* Image hover zoom */
    img {
        will-change: transform;
    }

    /* Focus styles */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #9b2335;
        outline-offset: 2px;
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }
        html {
            scroll-behavior: auto;
        }
    }

    /* Tablet adjustments */
    @media (max-width: 768px) {
        .floating-card {
            display: none;
        }
        
        #hero {
            min-height: auto;
            padding: 8rem 0 4rem;
        }
    }

    /* Print styles */
    @media print {
        nav, #contact, footer {
            display: none;
        }
        body {
            color: #000;
            background: #fff;
        }
    }
