.reviews-hero {
    position: relative;
    min-height: 60vh;
    background:
        linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
        url("/img/hero/hero2.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 6% 80px;
}

.reviews-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1950px;
    padding: 50px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.reviews-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 22px;
}

.reviews-hero-content p {
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto;
}

.reviews-intro .section-heading p {
    color: #555;
}

.reviews-section {
    background: #f7f4ef;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: #fff;
    padding: 34px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-top: 4px solid #b99665;
}

.stars {
    color: #b99665;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.review-card p {
    color: #444;
    margin-bottom: 22px;
}

.review-card strong {
    color: #111;
}

.review-cta {
    background:
        linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
        url("/img/communities/orlando.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 6%;
}

.review-cta div {
    max-width: 780px;
    margin: 0 auto;
}

.review-cta h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 22px;
}

.review-cta p {
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}