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

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: #C9A84C;
        color: #0A1628;
    }

    /* Navbar */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(250, 250, 248, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
    }

    #navbar.scrolled .nav-link {
        color: rgba(10, 22, 40, 0.7);
    }

    #navbar.scrolled .menu-line {
        background: #0A1628;
    }

    /* Hero animations */
    .hero-subtitle {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.2s;
        opacity: 0;
        transform: translateY(100%);
    }

    .hero-title {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.4s;
        opacity: 0;
        transform: translateY(100%);
    }

    .hero-lead {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.6s;
        opacity: 0;
        transform: translateY(100%);
    }

    .hero-cta {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.8s;
        opacity: 0;
        transform: translateY(100%);
    }

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

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

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

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

    #mobile-menu .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; }

    /* Date input reset */
    input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 0.4;
        cursor: pointer;
    }

    /* Subtle image hover */
    .group:hover .group-hover\:scale-105 {
        transform: scale(1.05);
    }

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

    /* Form label focus */
    input:focus ~ label,
    textarea:focus ~ label {
        color: #C9A84C;
    }

    /* Smooth image loading */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 6px;
    }

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

    ::-webkit-scrollbar-thumb {
        background: rgba(10, 22, 40, 0.15);
        border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(10, 22, 40, 0.3);
    }
