
/* =========================================================
   Reviews Section
========================================================= */
.reviews-section {
    padding: 90px var(--page-pad);
    overflow: hidden;
}

.reviews-intro {
    max-width: 760px;
    margin-bottom: 38px;
    text-align: left;
}

.reviews-intro span {
    color: var(--deep-brown);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 12px;
    font-weight: 900;
}

.reviews-intro h2 {
    margin: 10px 0;
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    font-weight: 400;
    color: var(--deep-brown);
}

.reviews-intro p {
    color: #73554a;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.reviews-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 30px;
}

.reviews-scroll::-webkit-scrollbar {
    height: 12px;
}

.reviews-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
    background: var(--deep-brown);
    border-radius: 999px;
}

.review-card {
    scroll-snap-align: start;
    min-height: 260px;
    background: rgba(255, 253, 251, 0.95);
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.review-card strong {
    display: block;
    color: var(--deep-brown);
    font-weight: 900;
    margin: 0;
}

.review-card small {
    display: block;
    color: #9b8173;
    margin-top: 4px;
}

.review-stars {
    color: #d4af37;
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 15px;
}

.review-card p {
    color: #4a3429;
    line-height: 1.55;
    font-size: 16px;
    margin: 0;
}

.review-images {
    display: flex;
    gap: 8px;
    margin: 10px 0 16px;
}

.review-images img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.review-images img:hover {
    transform: scale(1.06);
}

.review-button-wrap {
    text-align: center;
    margin-top: 22px;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.google-review-button {
    background: #4285F4;
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, transform 0.15s ease;
}

.google-review-button:hover {
    background: #3367D6;
    transform: translateY(-1px);
}

.google-g {
    background: #fff;
    color: #4285F4;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
}

.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 18px;
    object-fit: contain;
}