<style>
      body {
        box-sizing: border-box;
      }
      
      :root {
        --luxury-gold: #c9a961;
        --deep-charcoal: #1c1c1c;
        --soft-cream: #f8f6f1;
        --rich-brown: #3d2f2a;
        --accent-copper: #b87333;
      }
      
      * {
        margin: 0;
        padding: 0;
      }
      
      .font-display {
        font-family: 'Playfair Display', serif;
      }
      
      .font-serif {
        font-family: 'Cormorant Garamond', serif;
      }
      
      .font-sans {
        font-family: 'Raleway', sans-serif;
      }
      
      /* Parallax Effects */
      .parallax-section {
        position: relative;
        overflow: hidden;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }
      
      .parallax-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(28, 28, 28, 0.5), rgba(28, 28, 28, 0.7));
        z-index: 1;
      }
      
      .parallax-content {
        position: relative;
        z-index: 2;
      }
      
      /* Hero Parallax Background */
      .hero-parallax {
        background: linear-gradient(135deg, #1c1c1c 0%, #2d2520 50%, #1c1c1c 100%);
        position: relative;
      }
      
      .hero-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.1;
        background-image: 
          repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 169, 97, 0.1) 35px, rgba(201, 169, 97, 0.1) 70px);
      }
      
      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @keyframes fadeInScale {
        from {
          opacity: 0;
          transform: scale(0.9);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      
      @keyframes shimmer {
        0% {
          background-position: -200% center;
        }
        100% {
          background-position: 200% center;
        }
      }
      
      .fade-in-up {
        animation: fadeInUp 1s ease-out forwards;
      }
      
      .fade-in-scale {
        animation: fadeInScale 0.8s ease-out forwards;
      }
      
      .delay-1 { animation-delay: 0.2s; opacity: 0; }
      .delay-2 { animation-delay: 0.4s; opacity: 0; }
      .delay-3 { animation-delay: 0.6s; opacity: 0; }
      .delay-4 { animation-delay: 0.8s; opacity: 0; }
      
      /* Luxury Button Styles */
      .btn-luxury {
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid var(--luxury-gold);
      }
      
      .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
      }
      
      .btn-luxury:hover::before {
        left: 100%;
      }
      
      .btn-luxury:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
      }
      
      /* Room Card Hover Effects */
      .room-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
      
      .room-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.5s;
      }
      
      .room-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      }
      
      .room-card:hover::after {
        opacity: 1;
      }
      
      /* Decorative Elements */
      .decorative-line {
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
      }
      
      .luxury-border {
        border: 1px solid rgba(201, 169, 97, 0.3);
        position: relative;
      }
      
      .luxury-border::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: var(--luxury-gold);
      }
      
      /* Floating CTA */
      .floating-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 100;
        animation: float 3s ease-in-out infinite;
      }
      
      @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
      }
      
      /* Section Background Patterns */
      .pattern-dots {
        background-image: radial-gradient(circle, rgba(201, 169, 97, 0.15) 1px, transparent 1px);
        background-size: 30px 30px;
      }
      
      /* Testimonial Cards */
      .testimonial-card {
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
      }
      
      .testimonial-card:hover {
        transform: scale(1.05);
      }
      
      /* Video/Image Container */
      .media-container {
        position: relative;
        width: 100%;
        padding-bottom: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #2d2520, #1c1c1c);
      }
      
      .media-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      /* Scroll Indicator */
      .scroll-indicator {
        animation: bounce 2s infinite;
      }
      
      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
      }
      
      /* Nav on Scroll */
      .nav-scrolled {
        background: rgba(28, 28, 28, 0.98) !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .parallax-section {
          background-attachment: scroll;
        }
        
        .floating-cta {
          bottom: 20px;
          right: 20px;
        }
      }
    </style>