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

        * {
            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;
        }

        /* Equal height cards */
        .row-equal-height {
            display: flex;
            flex-wrap: wrap;
        }

        .row-equal-height > [class*='col-'] {
            display: flex;
            flex-direction: column;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(rgba(30, 13, 1, 0.4), rgba(182, 108, 83, 0.3)), 
                        url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            font-weight: 300;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .btn-luxury {
            background: var(--dark-sage);
            color: var(--white);
            padding: 16px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-luxury:hover {
            background: var(--dark-sage);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Sections */
        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark-brown);
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--terracotta);
        }

        .section-title p {
            font-size: 1.3rem;
            color: var(--sage);
            font-style: italic;
            margin-top: 1.5rem;
        }

        /* Suites Section */
        .suites {
            background: var(--beige);
            position: relative;
            overflow: hidden;
        }

        .suites::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, var(--beige), transparent);
            z-index: 1;
        }

        .suite-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            margin-bottom: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .suite-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .suite-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: all 0.5s ease;
        }

        .suite-card:hover .suite-image {
            transform: scale(1.03);
        }

        .suite-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.9);
            color: var(--dark-brown);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .suite-content {
            padding: 2.2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .suite-description {
            flex-grow: 1;
            margin-bottom: 1.8rem;
        }

        .suite-cta {
            margin-top: auto;
        }

        .btn-suite {
            background: var(--terracotta);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            width: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-suite:hover {
            background: var(--dark-sage);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .suite-title {
            color: var(--terracotta);
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .suite-size {
            color: var(--sage);
            font-weight: bold;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        /* Restaurant Section */
        .restaurant {
            background: var(--white);
            position: relative;
        }

        .restaurant-content {
            display: flex;
            align-items: center;
            min-height: 500px;
        }

        .restaurant-image {
            background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            height: 450px;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .restaurant-image:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .ps-lg-4 {
            padding-left: 2rem;
        }

        .ps-lg-4 p.lead {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: var(--dark-brown);
        }

        /* Common Spaces */
        .common-spaces {
            background: var(--sage);
            color: var(--white);
            position: relative;
        }

        .space-item {
            text-align: center;
            padding: 2.5rem 2rem;
            margin-bottom: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
            height: 100%;
        }

        .space-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .space-icon {
            font-size: 3rem;
            color: var(--beige);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .space-item:hover .space-icon {
            transform: scale(1.1);
            color: var(--white);
        }

        .space-item h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--beige);
        }

        .space-item:hover h4 {
            color: var(--white);
        }

        /* Events Section */
        .events {
            background: var(--dark-sage);
            color: var(--white);
            position: relative;
        }

        .events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
            z-index: 1;
        }

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

        .event-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 2.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

        .event-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .event-card h4 {
            color: var(--beige);
            margin-bottom: 0.8rem;
            font-size: 1.5rem;
            font-weight: 500;
        }

        .event-card .event-size {
            color: var(--terracotta);
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
        }

        .event-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        .event-icon {
            font-size: 2.8rem;
            color: var(--beige);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .event-card:hover .event-icon {
            transform: scale(1.1);
            color: var(--white);
        }

        /* Boutique */
        .boutique {
            background: var(--terracotta);
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .boutique::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
            z-index: 1;
        }

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

        .boutique .lead {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Access Section */
        .access {
            background: var(--dark-brown);
            color: var(--white);
            position: relative;
        }

        .access::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
            z-index: 1;
        }

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

        .access-feature {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .access-feature:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }

        .access-icon {
            font-size: 2.8rem;
            color: var(--beige);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .access-feature:hover .access-icon {
            transform: scale(1.1);
            color: var(--white);
        }

        .access-feature h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--beige);
        }

        .access-feature:hover h4 {
            color: var(--white);
        }

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

        @media (max-width: 991.98px) {
            .section {
                padding: 80px 0;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .hero-content p {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 60px 0;
            }
            
            .hero {
                min-height: 600px;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .restaurant-image {
                height: 350px;
                margin-bottom: 30px;
            }
            
            .ps-lg-4 {
                padding-left: 0;
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .btn-luxury {
                padding: 14px 35px;
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }