    *, *::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: #0A1628;
    }
    ::-webkit-scrollbar-thumb {
        background: #C9A84C;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #D4AF5A;
    }

    /* Selection */
    ::selection {
        background: #C9A84C;
        color: #0A1628;
    }

    /* Reveal Animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
    .reveal:nth-child(4) { transition-delay: 0.3s; }

    /* Hero Animations */
    .hero-badge {
        animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    }

    h1 {
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    }

    .hero p:first-of-type {
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    }

    .hero p:last-of-type,
    .hero > div:last-child {
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    }

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

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

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

    #navbar.scrolled {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
    }

    #navbar.scrolled .nav-link {
        color: rgba(255, 255, 255, 0.85);
    }

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

    #mobile-menu.closed {
        opacity: 0;
        pointer-events: none;
    }

    /* Menu Button Animations */
    .menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .menu-btn.active .menu-line:nth-child(3) {
        width: 20px;
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Gold accent line animation */
    .accent-line {
        position: relative;
    }
    .accent-line::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #C9A84C;
        transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .accent-line:hover::after {
        width: 100%;
    }

    /* Room card hover */
    .room-card {
        position: relative;
        overflow: hidden;
    }
    .room-card img {
        transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .room-card:hover img {
        transform: scale(1.05);
    }

    /* Button focus states */
    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #C9A84C;
        outline-offset: 2px;
    }

    /* Smooth image loading */
    img {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    img.loaded {
        opacity: 1;
    }

    /* Decorative gold divider */
    .gold-divider {
        width: 48px;
        height: 2px;
        background: linear-gradient(90deg, #C9A84C, #D4AF5A);
    }

    /* Subtle pattern overlay for sections */
    .pattern-overlay {
        position: relative;
    }
    .pattern-overlay::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.03;
        background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    /* Mobile menu link animation */
    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s 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; }
