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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #FCF8F0;
            color: #1E2A2F;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .logo, .serif-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Premium header */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(252, 248, 240, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(210, 180, 140, 0.3);
            transition: all 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            flex-wrap: wrap;
        }

        .logo h1 {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #C5A059;
        }
        .logo p {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #7D6E4A;
            margin-top: 4px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1E2A2F;
            transition: color 0.2s;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: #C5A059;
        }
        .header-cta {
            background: transparent;
            border: 1.5px solid #C5A059;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.3s;
            color: #1E2A2F;
        }
        .header-cta:hover {
            background: #C5A059;
            color: white;
            border-color: #C5A059;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.2)), url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
            background-blend-mode: overlay;
            border-radius: 0 0 40px 40px;
            margin-bottom: 20px;
        }
        /* fallback for realistic dubai luxury vibes: using high-quality premium unsplash style but we also add another layer */
        .hero-content {
            max-width: 850px;
            padding: 20px;
            color: white;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        .hero-content h2 {
            font-size: 1.4rem;
            letter-spacing: 6px;
            font-weight: 300;
            margin-bottom: 1rem;
        }
        .hero-content h1 {
            font-size: 5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        .btn-gold {
            background: #C5A059;
            border: none;
            padding: 14px 38px;
            font-size: 1rem;
            font-weight: 600;
            color: #1E2A2F;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .btn-gold:hover {
            background: #B28B40;
            transform: translateY(-2px);
        }

        /* luxury sections */
        section {
            padding: 90px 0;
        }
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #1E2A2F;
        }
        .section-sub {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px auto;
            color: #5A5A4E;
            font-size: 1.1rem;
        }

        /* Rooms Grid */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin-top: 20px;
        }
        .room-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }
        .room-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 50px -12px rgba(0,0,0,0.15);
        }
        .room-img {
            height: 280px;
            background-size: cover;
            background-position: center;
        }
        .room-info {
            padding: 28px 28px 32px;
        }
        .room-info h3 {
            font-size: 1.9rem;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .room-price {
            color: #C5A059;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 12px 0 18px;
        }
        .room-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #8f8f82;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #C5A059;
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
            text-decoration: none;
            color: #1E2A2F;
        }
        .btn-outline:hover {
            background: #C5A059;
            color: white;
            border-color: #C5A059;
        }

        /* Amenities (realistic icons) */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 35px;
            text-align: center;
        }
        .amenity-item {
            background: rgba(255,255,240,0.6);
            padding: 30px 20px;
            border-radius: 36px;
            backdrop-filter: blur(2px);
            transition: 0.2s;
        }
        .amenity-item i {
            font-size: 2.8rem;
            color: #C5A059;
            margin-bottom: 20px;
        }
        .amenity-item h4 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        /* Gallery realistic images */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .gallery-item {
            border-radius: 28px;
            overflow: hidden;
            height: 320px;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s;
            cursor: pointer;
        }
        .gallery-item:hover {
            transform: scale(1.02);
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 30px;
            padding: 32px;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
        }
        .testimonial-flex {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .stars {
            color: #F4B942;
            margin-bottom: 20px;
        }
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            color: #2C3A3F;
        }

        /* Footer */
        footer {
            background: #0F1A1C;
            color: #E9E3D5;
            padding: 70px 0 30px;
            border-radius: 40px 40px 0 0;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-col h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #C5A059;
        }
        .footer-col p, .footer-col a {
            color: #cfd5cf;
            text-decoration: none;
            line-height: 1.7;
        }
        .footer-col a:hover {
            color: #C5A059;
        }
        .social-icons a {
            font-size: 1.6rem;
            margin-right: 20px;
            color: #E9E3D5;
            transition: 0.2s;
        }
        .social-icons a:hover {
            color: #C5A059;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid rgba(197,160,89,0.2);
            padding-top: 30px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .container {
                padding: 0 24px;
            }
        }