.reviews-page{padding:150px 0 100px;}
.reviews-head{max-width:640px;margin-bottom:40px;}
.reviews-head h1{font-size:clamp(30px,4vw,44px);margin-top:14px;}
.reviews-head p{color:var(--text-soft);margin-top:14px;font-size:15.5px;}

.reviews-toolbar{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;margin-bottom:36px;padding-bottom:28px;border-bottom:1px solid var(--border-hair);}
.filter-row{display:flex;gap:8px;flex-wrap:wrap;}
.filter-chip{
  border:1px solid var(--border);border-radius:20px;padding:8px 15px;font-size:13px;cursor:pointer;
  transition:all .2s ease;background:var(--bg-alt);color:var(--text-soft);
}
.filter-chip:hover{border-color:var(--border-strong);color:var(--text);}
.filter-chip.selected{background:var(--text);color:#0a0a0b;border-color:var(--text);font-weight:600;}
.reviews-avg{display:flex;align-items:center;gap:10px;font-family:var(--f-mono);font-size:13px;color:var(--text-dim);}
.reviews-avg strong{color:var(--text);font-size:16px;font-family:var(--f-display);}

.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
@media (max-width:900px){.reviews-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:640px){.reviews-grid{grid-template-columns:1fr;}}

.rcard{border:1px solid var(--border);border-radius:var(--radius-md);padding:26px;background:var(--surface);display:flex;flex-direction:column;}
.rcard-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px;}
.rcard-stars{display:flex;gap:3px;}
.rcard-stars svg{width:13px;height:13px;fill:var(--text);}
.rcard-date{font-family:var(--f-mono);font-size:11px;color:var(--text-dim);}
.rcard p.quote{font-size:14px;line-height:1.65;color:var(--text-soft);flex-grow:1;margin-bottom:20px;}
.rcard-who{display:flex;justify-content:space-between;align-items:center;border-top:1px solid var(--border-hair);padding-top:16px;}
.rcard-name{font-size:13.5px;font-weight:600;}
.rcard-project{font-family:var(--f-mono);font-size:10.5px;color:var(--text-dim);background:var(--bg-alt);border:1px solid var(--border-hair);padding:3px 9px;border-radius:12px;}

/* gate info card explaining how reviews get published */
.gate-card{
  border:1px solid var(--border);border-radius:var(--radius-lg);padding:36px;background:var(--bg-alt);
  display:flex;gap:22px;align-items:flex-start;margin-top:56px;
}
.gate-icon{width:44px;height:44px;border-radius:12px;background:var(--glass-strong);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.gate-icon svg{width:20px;height:20px;color:var(--text-soft);}
.gate-card h3{font-size:17px;margin-bottom:8px;}
.gate-card p{font-size:14px;color:var(--text-soft);line-height:1.7;max-width:520px;}
