    *, *::before, *::after {
        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: #faf5f7;
    }
    ::-webkit-scrollbar-thumb {
        background: #b0576b;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #9e3f52;
    }

    /* Selection */
    ::selection {
        background: #b0576b;
        color: white;
    }

    /* Hero animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #hero > .relative > .max-w-2xl > * {
        animation: fadeInUp 0.8s ease forwards;
    }

    #hero > .relative > .max-w-2xl > :nth-child(2) { animation-delay: 0.1s; }
    #hero > .relative > .max-w-2xl > :nth-child(3) { animation-delay: 0.2s; }
    #hero > .relative > .max-w-2xl > :nth-child(4) { animation-delay: 0.3s; }
    #hero > .relative > .max-w-2xl > :nth-child(5) { animation-delay: 0.4s; }
    #hero > .relative > .max-w-2xl > :nth-child(6) { animation-delay: 0.5s; }

    /* Scroll reveal */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* Navbar glass effect */
    #navbar.scrolled {
        background: rgba(48, 17, 23, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Menu card hover */
    .group:hover img {
        transform: scale(1.05);
    }

    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Subtle pattern for sections */
    .pattern-dots {
        background-image: radial-gradient(circle, rgba(176, 87, 107, 0.1) 1px, transparent 1px);
        background-size: 24px 24px;
    }

    /* Focus styles */
    a:focus-visible, button:focus-visible {
        outline: 2px solid #fbbf24;
        outline-offset: 2px;
        border-radius: 4px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        html {
            scroll-padding-top: 70px;
        }

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

        .group .h-56 {
            height: 200px;
        }
    }

    @media (max-width: 640px) {
        #hero h1 {
            font-size: 2.25rem;
        }

        .font-display.font-bold.text-4xl,
        .font-display.font-bold.text-5xl {
            font-size: 2rem;
        }
    }
