/* ===================== */
/* Layout helpers        */
/* ===================== */
.rh-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.rh-inner--narrow {
    max-width: 800px;
}

/* ===================== */
/* 1. Page Hero          */
/* ===================== */
.rh-hero {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.rh-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.rh-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===================== */
/* 2. Intro Strip        */
/* ===================== */
.rh-intro {
    background-color: var(--color-light-grey);
    padding: 3rem 1rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro-col h3 {
    font-size: 1.2rem;
    color: var(--color-orange);
    margin-bottom: 0.4rem;
}

.intro-col p {
    font-size: 0.95rem;
    color: var(--color-black);
}

.intro-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ===================== */
/* 3. Pricing Note       */
/* ===================== */
.rh-pricing-note {
    background-color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.rh-pricing-note h2 {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.rh-pricing-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.rate-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.rate-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rate-badge--community {
    background-color: var(--color-green);
    color: var(--color-white);
}

.rate-badge--general {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.rate-badge-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 auto;
}

.rate-badge-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.4rem;
}

/* ===================== */
/* 4. Room Cards         */
/* ===================== */
.rh-rooms {
    background-color: var(--color-white);
    padding: 2rem 1rem 4rem;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.room-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.room-photo-placeholder {
    background-color: var(--color-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.room-photo-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-placeholder);
}

.room-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.room-details h2 {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.room-capacity {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.room-details > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 1.25rem;
}

.room-pricing {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.room-pricing th {
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
}

.th-community {
    background-color: var(--color-green);
    color: var(--color-white);
}

.th-general {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.room-pricing td {
    padding: 0.5rem 0.75rem;
    color: var(--color-black);
    border-top: 1px solid var(--color-border);
}

.room-contact-rates {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

.room-details .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ===================== */
/* 5. Testimonials       */
/* ===================== */
.rh-testimonials {
    background-color: var(--color-light-grey);
    padding: 4rem 1rem;
}

.rh-testimonials h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 2rem;
}

.rh-testimonial-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rh-testimonial-card {
    background-color: var(--color-white);
    border-radius: 6px;
    padding: 2rem;
}

.rh-testimonial-card blockquote p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.rh-testimonial-card cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ===================== */
/* 6. Enquiry CTA        */
/* ===================== */
.rh-cta {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.rh-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rh-cta p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===================== */
/* Booking Modal Extras  */
/* ===================== */
.booking-trigger {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.booking-error {
    display: block;
    font-size: 0.85rem;
    color: var(--color-error);
    margin-top: 0.25rem;
    min-height: 0;
}

.booking-error:empty {
    display: none;
}

.booking-time-row {
    display: flex;
    gap: 1rem;
}

.booking-time-col {
    flex: 1;
}

.booking-time-col label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.35rem;
}

.booking-time-col input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-black);
}

.booking-time-col input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.booking-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.booking-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--color-orange);
}

#bookingModal select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-black);
    background-color: var(--color-white);
}

#bookingModal select:focus {
    outline: none;
    border-color: var(--color-orange);
}

/* ===================== */
/* Mobile Responsive     */
/* ===================== */
@media (max-width: 768px) {
    .rh-hero h1 {
        font-size: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .room-card {
        grid-template-columns: 1fr;
    }

    .room-photo,
    .room-photo-placeholder {
        min-height: 200px;
    }

    .rh-testimonial-cards {
        grid-template-columns: 1fr;
    }
}
