/* ============================================================
   reviews.css — Client Reviews page (main advisory site)
   Reuses header / footer / buttons / .cta from service.css.
   Adds: rating summary, gold stars, category filter, review wall.
   Same brand tokens (black / coral / Montserrat). Wix-portable.
   ============================================================ */

/* ---- gold star ratings (filled by site.js [data-stars]) ---- */
.stars { display: inline-flex; gap: 3px; line-height: 0; }
.stars svg { width: 16px; height: 16px; }
.stars-lg svg { width: 22px; height: 22px; }

/* ---- reviews hero / header block ---- */
.rev-hero { position: relative; padding: 150px 0 56px; overflow: hidden; }
.rev-hero::before { content: ""; position: absolute; top: -160px; right: -120px; width: 760px; max-width: 100vw; height: 700px; background: radial-gradient(circle at center, rgba(232,84,109,0.22), transparent 64%); pointer-events: none; z-index: 0; }
.rev-hero-inner { position: relative; z-index: 1; }
.rev-hero h1 { font-size: clamp(38px, 4.6vw, 62px); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; margin: 14px 0 18px; }
.rev-hero h1 em { font-style: normal; color: var(--coral); }
.rev-intro { font-size: var(--text-md); font-weight: 300; color: var(--fg-2); line-height: var(--lh-relaxed); max-width: 56ch; margin: 0; }

/* ---- rating summary card ---- */
.rating-summary { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; margin-top: 34px; padding: 22px 28px; background: var(--ink-900); border: 1px solid var(--border-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.rs-left { display: flex; align-items: center; gap: 18px; }
.rs-score { font-family: var(--font-head); font-size: 46px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.rs-block { display: flex; flex-direction: column; gap: 7px; }
.rs-count { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--fg-muted); }
.rs-sep { width: 1px; height: 46px; background: var(--border); flex: none; }
.rs-verified { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--fg-2); white-space: nowrap; flex: none; }
.rs-verified svg { width: 18px; height: 18px; flex: none; }
.rating-summary .btn { margin-left: auto; }

/* ---- category filter (sticky under fixed header) ---- */
.rev-filters { position: sticky; top: 86px; z-index: 40; background: rgba(8,8,9,0.82); backdrop-filter: blur(14px); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.rev-filters-inner { display: flex; flex-wrap: wrap; gap: 10px; padding-block: 16px; }
.filter-tab { white-space: nowrap; flex: none; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--fg-2); background: transparent; border: 1px solid var(--border-soft); border-radius: var(--r-pill); padding: 10px 18px; cursor: pointer; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease); display: inline-flex; align-items: center; gap: 9px; }
.filter-tab:hover { border-color: var(--ink-700); color: var(--fg); }
.filter-tab .ft-count { font-size: 12px; font-weight: 700; color: var(--fg-muted); transition: color var(--dur) var(--ease); }
.filter-tab.is-active { background: var(--coral); border-color: var(--coral); color: #fff; }
.filter-tab.is-active .ft-count { color: rgba(255,255,255,0.82); }
.filter-tab:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }

/* ---- review wall (masonry) ---- */
.rev-wall { padding: 44px 0 var(--sp-9); }
.rev-grid { column-count: 3; column-gap: 22px; }
.rev-card { break-inside: avoid; margin: 0 0 22px; background: var(--ink-850); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 28px; display: flex; flex-direction: column; gap: 15px; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.rev-card:hover { border-color: var(--ink-700); transform: translateY(-3px); }
.rev-card.is-hidden { display: none; }
.rev-quote { margin: 0; font-family: var(--font-head); font-weight: 500; font-size: 16px; line-height: 1.55; letter-spacing: -0.01em; color: var(--fg); }
.rev-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.rev-who b { display: block; font-family: var(--font-head); font-size: 14.5px; font-weight: 700; color: var(--fg); line-height: 1.3; }
.rev-who span { font-size: 12.5px; color: var(--fg-muted); }
.rev-source { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--fg-muted); flex: none; }
.rev-source svg { width: 15px; height: 15px; flex: none; }
.rev-count-note { font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--fg-muted); margin: 36px 0 0; text-align: center; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .rev-hero { padding: 124px 0 48px; }
  .rev-grid { column-count: 2; }
  .rev-filters { top: 86px; }
  .rating-summary { gap: 20px; padding: 22px 24px; flex-wrap: wrap; }
  .rs-sep { display: none; }
  .rating-summary .btn { margin-left: 0; }
}
@media (max-width: 620px) {
  .rev-grid { column-count: 1; }
  .rev-hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .rs-score { font-size: 40px; }
  .rating-summary .btn { width: 100%; }
  .rev-filters-inner { padding-block: 13px; }
}
