        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #d4af37;
        }

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(135deg, rgba(30, 13, 1, 0.7) 0%, rgba(182, 108, 83, 0.4) 50%, rgba(141, 139, 99, 0.3) 100%), 
                        url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 0.8rem 2rem;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            color: var(--gold);
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            font-weight: 200;
            letter-spacing: 5px;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, var(--white), var(--beige), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-ornament {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 2rem auto;
            position: relative;
        }

        .hero-ornament::before,
        .hero-ornament::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            top: -3px;
        }

        .hero-ornament::before { left: -10px; }
        .hero-ornament::after { right: -10px; }

        .btn-luxury {
            background: linear-gradient(45deg, var(--terracotta), var(--gold));
            color: var(--white);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-luxury:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, var(--gold), var(--terracotta));
            color: var(--white);
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.5rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section-title h2::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
            border-radius: 3px;
        }

        .section-title p {
            font-size: 1.4rem;
            color: var(--sage);
            font-style: italic;
            margin-top: 2rem;
            font-weight: 300;
        }

        /* Gallery Section */
        .gallery {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--beige) 100%);
            position: relative;
            overflow: hidden;
        }

        .gallery::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(182, 108, 83, 0.03) 0%, transparent 70%);
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .gallery-content {
            position: relative;
            z-index: 2;
        }

        .main-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            margin-bottom: 2rem;
        }

        .main-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: all 0.8s ease;
        }

        .main-image:hover img {
            transform: scale(1.05);
        }

        .thumbnail-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .thumbnail {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .thumbnail img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .thumbnail:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .thumbnail:hover img {
            transform: scale(1.1);
        }

        /* Suite Details Section */
        .suite-details {
            background: var(--white);
            position: relative;
        }

        .details-card {
            background: var(--white);
            border-radius: 25px;
            padding: 4rem 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border: 1px solid rgba(182, 108, 83, 0.1);
            position: relative;
            overflow: hidden;
        }

        .details-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
        }

        .suite-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .info-item {
            text-align: center;
            padding: 2rem;
            background: var(--cream);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateY(-5px);
            background: var(--beige);
        }

        .info-icon {
            font-size: 2.5rem;
            color: var(--terracotta);
            margin-bottom: 1rem;
        }

        .info-item h4 {
            font-size: 1.3rem;
            color: var(--dark-brown);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .info-item p {
            color: var(--sage);
            font-size: 1rem;
        }

        .suite-description {
            font-size: 1.2rem;
            line-height: 2;
            color: var(--dark-brown);
            margin-bottom: 2rem;
        }

        .suite-description .lead {
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--terracotta);
            margin-bottom: 1.5rem;
        }

        /* Amenities Section */
        .amenities {
            background: var(--dark-brown);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .amenities::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .amenities .section-title h2,
        .amenities .section-title p {
            color: var(--white);
        }

        .amenity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .amenity-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem 2rem;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .amenity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .amenity-card:hover::before {
            left: 100%;
        }

        .amenity-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .amenity-category {
            font-size: 1.3rem;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .amenity-list {
            list-style: none;
            padding: 0;
        }

        .amenity-list li {
            padding: 0.8rem 0;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .amenity-list li:last-child {
            border-bottom: none;
        }

        .amenity-list li i {
            color: var(--beige);
            margin-right: 1rem;
            font-size: 1.1rem;
        }

        /* Pricing Section */
        .pricing {
            background: linear-gradient(45deg, var(--sage) 0%, var(--dark-sage) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .pricing::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .pricing .section-title h2,
        .pricing .section-title p {
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .pricing-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 4rem 3rem;
            text-align: center;
            transition: all 0.5s ease;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--beige) 50%, var(--terracotta) 100%);
        }

        .pricing-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .price-amount {
            font-size: 4rem;
            font-weight: 300;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .price-period {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
        }

        .price-includes {
            list-style: none;
            padding: 0;
            margin-bottom: 3rem;
        }

        .price-includes li {
            padding: 0.8rem 0;
            color: rgba(255,255,255,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .price-includes li i {
            color: var(--beige);
            margin-right: 1rem;
        }

        /* Booking Section */
        .booking {
            background: linear-gradient(135deg, var(--terracotta) 0%, var(--dark-sage) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .booking-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .booking h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            color: var(--white);
        }

        .booking p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 100px 0;
            }
            
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .section-title h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 80px 0;
            }
            
            .hero {
                min-height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
                letter-spacing: 3px;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }

            .main-image img {
                height: 350px;
            }

            .details-card,
            .amenity-card,
            .pricing-card,
            .booking-content {
                padding: 2.5rem;
            }

            .thumbnail-gallery {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .details-card,
            .amenity-card,
            .pricing-card,
            .booking-content {
                padding: 2rem;
            }

            .price-amount {
                font-size: 3rem;
            }

            .booking h2 {
                font-size: 2.2rem;
            }
        }
        .btn-booking {
            background: linear-gradient(45deg, var(--terracotta), var(--gold));
            color: var(--white);
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .btn-booking:hover {
            background-color: var(--dark-sage);
            transform: translateY(-2px);
        }
