/* ═══════════ REVIEWS ═══════════
   A scrolling page, not the deck. Same bark/moss/linen language as the
   service documents; self-contained so it needs only style.css + this. */

html, body {
    overflow: auto;
    height: auto;
    min-height: 100%;
}

/* page shell */
.rev {
    background: var(--bark);
    color: var(--linen);
    min-height: 100vh;
}

.rev-hero {
    max-width: 62ch;
    margin: 0 auto;
    padding: calc(var(--topbar-h) + clamp(20px, 4vh, 44px)) 8vw clamp(28px, 4vh, 44px);
    text-align: center;
}

.rev-hero .eyebrow {
    display: block;
    margin-bottom: 20px;
    color: var(--moss);
}

.rev-title {
    font-size: clamp(40px, 7vw, 78px);
    font-weight: 300;
}

/* aggregate rating */
.rev-agg {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px 14px;
}

.rev-stars {
    color: var(--moss);
    font-size: 18px;
    letter-spacing: 0.12em;
    line-height: 1;
}

.rev-agg .rev-stars { font-size: 20px; }

.rev-agg-num {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    color: var(--linen);
}

.rev-agg-sub {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--stone);
}

/* card grid */
.rev-grid {
    list-style: none;
    max-width: 1200px;
    margin: clamp(32px, 5vh, 56px) auto 0;
    padding: 0 8vw;
    /* masonry-style columns so each card sizes to its own content —
       reviews vary a lot in length, so a grid would stretch short cards */
    columns: 3 320px;
    column-gap: clamp(16px, 2vw, 26px);
}

.rev-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(26px, 3vw, 34px);
    margin-bottom: clamp(16px, 2vw, 26px);
    break-inside: avoid;
    background: rgba(244, 241, 234, 0.035);
    border: 1px solid rgba(229, 225, 215, 0.12);
    transition: border-color .4s ease, background .4s ease;
}

.rev-card:hover {
    border-color: rgba(138, 154, 75, 0.4);
    background: rgba(74, 85, 38, 0.14);
}

.rev-card .rev-stars { font-size: 15px; }

.rev-text {
    font-size: clamp(17px, 1.9vw, 19px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(244, 241, 234, 0.92);
    flex: 1;
}

.rev-name {
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--moss);
}

/* CTA (mirrors .svc-cta) */
.rev-cta {
    max-width: 760px;
    margin: clamp(56px, 9vh, 100px) auto 0;
    padding: clamp(36px, 5vw, 52px) 8vw;
    text-align: center;
}

.rev-cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
}

.rev-cta-sub {
    margin-top: 12px;
    color: var(--stone);
    font-weight: 300;
}

.rev-cta-links {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.svc-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    color: var(--bark);
    background: var(--moss);
    transition: background .4s ease, transform .4s ease;
}

.svc-btn:hover { background: #9BAC58; transform: translateY(-2px); }

.svc-btn.ghost {
    background: transparent;
    color: var(--linen);
    border: 1px solid rgba(244, 241, 234, 0.4);
}

.svc-btn.ghost:hover { background: rgba(244, 241, 234, 0.08); border-color: var(--linen); }

/* The cards run to the page edge here, so the footer needs air above it that
   the other documents get from their own trailing padding. */
.svc-foot { margin-top: clamp(48px, 7vh, 80px); }

@media (max-width: 600px) {
    .rev-grid { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .svc-btn:hover { transform: none; }
}
