        :root {
            --primary: #9b6b28;
            --primary-dark: #78521d;
            --primary-light: #d4a96a;
            --secondary: #1a1a1a;
            --light-bg: #fbf9f6;
            --dark-bg: #141414;
            --text-main: #333333;
            --text-muted: #666666;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .brand-font {
            font-family: 'Cinzel', serif;
            letter-spacing: 0.5px;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo h1 {
            font-size: 1.5rem;
            color: var(--secondary);
            font-weight: 700;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-btn {
            background-color: var(--primary);
            color: white !important;
            padding: 0.6rem 1.4rem;
            border-radius: 4px;
            transition: var(--transition);
        }

        .nav-btn:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(155, 107, 40, 0.25);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 85vh;
            background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1564507592333-c60657eea523?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 1.5rem;
            margin-top: 60px;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.25rem;
            font-style: italic;
            color: #ececec;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        /* Booking Engine Bar (QloApps Integrated UI) */
        .booking-bar-wrapper {
            max-width: 1100px;
            width: 90%;
            margin: -60px auto 4rem auto;
            position: relative;
            z-index: 100;
        }

        .booking-bar {
            background: white;
            padding: 1.8rem;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto;
            gap: 1.2rem;
            align-items: flex-end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group label {
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .form-group select, .form-group input {
            padding: 0.75rem;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 0.95rem;
            outline: none;
            background: #fafafa;
        }

        .form-group select:focus, .form-group input:focus {
            border-color: var(--primary);
            background: #fff;
        }

        .btn-search {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.85rem 1.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            height: 48px;
        }

        .btn-search:hover {
            background: var(--primary-dark);
        }

        /* Section Common */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-header h3 {
            font-size: 2.2rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 0.8rem;
        }

        .section-header h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

        .section-header p {
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-size: 1.05rem;
        }

        /* Welcome / Story */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
        }

        .story-text h4 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.2rem;
        }

        .story-text p {
            margin-bottom: 1.2rem;
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
        }

        .story-image {
            position: relative;
        }

        .story-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
        }

        /* Rooms Section */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .room-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .room-card:hover {
            transform: translateY(-5px);
        }

        .room-image {
            height: 240px;
            position: relative;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .room-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(26, 26, 26, 0.85);
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }

        .room-content {
            padding: 1.8rem;
        }

        .room-content h4 {
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .room-content p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 1.2rem;
        }

        .room-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
            padding-top: 0.8rem;
            border-top: 1px solid #f0f0f0;
        }

        .room-amenity {
            font-size: 0.82rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* Dining & Tours */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .feature-box {
            background: white;
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: var(--card-shadow);
            border-top: 4px solid var(--primary);
            transition: var(--transition);
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }

        .feature-box h4 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .feature-box p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            text-align: center;
            transition: var(--transition);
        }

        .service-card:hover {
            box-shadow: var(--card-shadow);
            border-color: var(--primary);
        }

        .service-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-card h5 {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: var(--secondary);
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        /* Amenities Bar */
        .extra-amenities {
            background: #f0ebe1;
            padding: 3rem 2rem;
            border-radius: 8px;
            margin-top: 3rem;
        }

        .extra-amenities h5 {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .amenity-chips {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
        }

        .chip {
            background: white;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #444;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        /* Contact Section */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: white;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
        }

        .contact-info {
            background: var(--dark-bg);
            color: white;
            padding: 3.5rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-info h4 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-light);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .info-item i {
            color: var(--primary-light);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .info-item p {
            font-size: 0.95rem;
            color: #ddd;
        }

        .tripadvisor-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: #00af87;
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.4rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            width: fit-content;
            margin-top: 1.5rem;
            transition: var(--transition);
        }

        .tripadvisor-btn:hover {
            background: #008f6e;
        }

        .contact-form {
            padding: 3.5rem 2.5rem;
        }

        .contact-form h4 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .contact-form p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 2rem;
        }

        .form-row {
            margin-bottom: 1.2rem;
        }

        .form-row label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #444;
        }

        .form-row input, .form-row textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.95rem;
            outline: none;
        }

        .form-row input:focus, .form-row textarea:focus {
            border-color: var(--primary);
        }

        .btn-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: var(--primary-dark);
        }

        /* Footer */
        footer {
            background: #111;
            color: #888;
            padding: 3rem 2rem 1.5rem 2rem;
            font-size: 0.88rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #222;
            padding-bottom: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-size: 0.82rem;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--secondary);
        }

        @media (max-width: 900px) {
            .story-grid, .contact-wrapper {
                grid-template-columns: 1fr;
            }
            .booking-bar {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .hero h2 {
                font-size: 2.5rem;
            }
        }