/**
 * Public Reviews — static design shell (scoped).
 * Source: mayerpix-public-reviews.html
 */

#mpx-public-reviews {
  --gold:#C9A96E; --gold-l:#E2C99A; --gold-d:#A07840;
  --black:#0A0A0A; --surface:#161616; --surface2:#1C1A17; --surface3:#242220;
  --border:rgba(201,169,110,.14); --border-s:rgba(201,169,110,.32);
  --text:#F0EDE8; --tm:rgba(240,237,232,.55); --td:rgba(240,237,232,.28);
  --green:#7DBE8A; --green-bg:rgba(125,190,138,.08); --green-b:rgba(125,190,138,.26);
  font-size:13px;
  -webkit-font-smoothing:antialiased;
  scroll-behavior:smooth;
  background:var(--black);
  color:var(--text);
  font-family:'Montserrat',sans-serif;
  font-weight:300;
  min-height:100vh;
  overflow-x:hidden;
}

#mpx-public-reviews *,
#mpx-public-reviews *::before,
#mpx-public-reviews *::after {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

#mpx-public-reviews .page{max-width:1100px;margin:0 auto;padding:0 32px 100px}

#mpx-public-reviews .hero{padding:72px 0 52px;position:relative}
#mpx-public-reviews .hero-eyebrow{font-size:8px;letter-spacing:.26em;text-transform:uppercase;color:var(--gold);margin-bottom:16px;display:flex;align-items:center;gap:10px}
#mpx-public-reviews .hero-eyebrow::before{content:'';width:24px;height:1px;background:var(--gold);opacity:.6}
#mpx-public-reviews .hero-h1{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:300;line-height:1.1;margin-bottom:16px;max-width:620px}
#mpx-public-reviews .hero-h1 em{font-style:italic;color:var(--gold-l)}
#mpx-public-reviews .hero-sub{font-size:12px;color:var(--tm);line-height:1.8;max-width:480px}

#mpx-public-reviews .trust-block{
  display:flex;align-items:center;gap:0;
  background:var(--surface2);border:1px solid var(--border);
  margin-bottom:44px;position:relative;overflow:hidden;
}
#mpx-public-reviews .trust-block::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(201,169,110,.28),transparent)}
#mpx-public-reviews .trust-cell{padding:20px 28px;flex:1;text-align:center;border-right:1px solid var(--border)}
#mpx-public-reviews .trust-cell:last-child{border-right:none}
#mpx-public-reviews .tc-val{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:400;color:var(--gold);line-height:1;margin-bottom:4px}
#mpx-public-reviews .tc-label{font-size:8px;letter-spacing:.16em;text-transform:uppercase;color:var(--td)}
#mpx-public-reviews .trust-badge{
  padding:20px 28px;flex-shrink:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
  border-left:1px solid var(--border);
}
#mpx-public-reviews .tb-icon{font-size:18px;margin-bottom:2px}
#mpx-public-reviews .tb-label{font-size:8px;letter-spacing:.12em;text-transform:uppercase;color:var(--green);text-align:center}
#mpx-public-reviews .tb-sub{font-size:9px;color:var(--td);text-align:center;line-height:1.5;max-width:160px}
#mpx-public-reviews .trust-stars{display:flex;gap:3px;justify-content:center;margin-bottom:4px}
#mpx-public-reviews .ts{font-size:16px;color:var(--gold)}

#mpx-public-reviews .filters{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:32px;align-items:center}
#mpx-public-reviews .filter-label{font-size:8px;letter-spacing:.14em;text-transform:uppercase;color:var(--td);margin-right:4px}
#mpx-public-reviews .filter{
  padding:6px 14px;background:transparent;border:1px solid rgba(201,169,110,.16);
  font-family:'Montserrat',sans-serif;font-size:8px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--td);cursor:pointer;transition:all .18s;
}
#mpx-public-reviews .filter:hover{border-color:rgba(201,169,110,.32);color:var(--tm)}
#mpx-public-reviews .filter.on{border-color:var(--gold);color:var(--gold);background:rgba(201,169,110,.06)}

#mpx-public-reviews .reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:44px;
}

#mpx-public-reviews .rev-card{
  background:var(--surface);border:1px solid var(--border);
  padding:22px 22px 18px;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  transition:border-color .22s, transform .22s;
}
#mpx-public-reviews .rev-card::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(201,169,110,.16),transparent)}
#mpx-public-reviews .rev-card:hover{border-color:rgba(201,169,110,.28);transform:translateY(-2px)}

#mpx-public-reviews .rc-stars{display:flex;gap:3px;margin-bottom:10px}
#mpx-public-reviews .rc-star{font-size:12px;color:var(--gold)}
#mpx-public-reviews .rc-star.off{color:rgba(201,169,110,.18)}

#mpx-public-reviews .rc-quote{
  font-family:'Cormorant Garamond',serif;font-size:48px;font-weight:300;
  color:rgba(201,169,110,.12);line-height:1;margin-bottom:-10px;margin-left:-4px;
  flex-shrink:0;
}

#mpx-public-reviews .rc-title{font-size:12px;font-weight:500;color:var(--text);margin-bottom:8px;line-height:1.4}
#mpx-public-reviews .rc-text{font-size:10px;color:var(--tm);line-height:1.75;flex:1;margin-bottom:14px}
#mpx-public-reviews .rc-text.is-clamped{overflow:hidden;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}
#mpx-public-reviews .rc-read-more{font-size:9px;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);cursor:pointer;background:none;border:none;font-family:'Montserrat',sans-serif;padding:0;transition:color .18s}
#mpx-public-reviews .rc-read-more:hover{color:var(--gold-l)}

#mpx-public-reviews .rc-chips{display:flex;flex-wrap:wrap;gap:4px;margin-bottom:14px}
#mpx-public-reviews .rc-chip{
  padding:3px 8px;background:rgba(201,169,110,.06);
  border:1px solid rgba(201,169,110,.14);
  font-size:8px;letter-spacing:.06em;text-transform:uppercase;color:var(--td);
}

#mpx-public-reviews .rc-footer{border-top:1px solid rgba(201,169,110,.08);padding-top:12px;margin-top:auto}
#mpx-public-reviews .rc-client{font-size:11px;font-weight:500;color:var(--tm);margin-bottom:3px}
#mpx-public-reviews .rc-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:9px;color:var(--td)}
#mpx-public-reviews .rc-session-badge{
  font-size:7px;letter-spacing:.1em;text-transform:uppercase;
  padding:2px 7px;background:rgba(201,169,110,.07);color:var(--gold);
  border:1px solid rgba(201,169,110,.16);
}
#mpx-public-reviews .rc-verified{
  font-size:7px;letter-spacing:.08em;text-transform:uppercase;
  padding:2px 7px;background:var(--green-bg);color:var(--green);
  border:1px solid var(--green-b);display:flex;align-items:center;gap:3px;
}

#mpx-public-reviews .rev-card.featured{border-color:rgba(201,169,110,.22);background:var(--surface2)}
#mpx-public-reviews .rev-card.featured::before{background:linear-gradient(90deg,transparent,rgba(201,169,110,.32),transparent)}
#mpx-public-reviews .rev-card.featured .rc-quote{color:rgba(201,169,110,.18)}

#mpx-public-reviews .empty-state{text-align:center;padding:72px 20px;grid-column:1/-1}
#mpx-public-reviews .es-ornament{
  width:56px;height:56px;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;margin:0 auto 20px;opacity:.35;
}
#mpx-public-reviews .es-title{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:300;color:var(--tm);margin-bottom:8px}
#mpx-public-reviews .es-sub{font-size:11px;color:var(--td);line-height:1.85}

#mpx-public-reviews .skel{background:var(--surface);border:1px solid var(--border);padding:22px;animation:mpx-reviews-shimmer 1.6s ease-in-out infinite}
@keyframes mpx-reviews-shimmer{0%,100%{opacity:.5}50%{opacity:1}}
#mpx-public-reviews .skel-line{height:10px;background:rgba(201,169,110,.06);margin-bottom:10px;border-radius:0}
#mpx-public-reviews .skel-line.short{width:40%}
#mpx-public-reviews .skel-line.med{width:65%}
#mpx-public-reviews .skel-line.stars{width:80px;height:12px}

#mpx-public-reviews .cta-strip{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  background:var(--surface2);border:1px solid var(--border);
  padding:28px 32px;position:relative;overflow:hidden;
}
#mpx-public-reviews .cta-strip::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(201,169,110,.28),transparent)}
#mpx-public-reviews .cta-title{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:300;margin-bottom:4px}
#mpx-public-reviews .cta-title em{font-style:italic;color:var(--gold-l)}
#mpx-public-reviews .cta-sub{font-size:10px;color:var(--td)}
#mpx-public-reviews .cta-actions{display:flex;gap:10px;flex-wrap:wrap}
#mpx-public-reviews .cta-btn{
  background:var(--gold);border:none;padding:13px 28px;
  font-family:'Montserrat',sans-serif;font-size:10px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;color:var(--black);
  cursor:pointer;transition:background .2s;white-space:nowrap;flex-shrink:0;
}
#mpx-public-reviews .cta-btn:hover{background:var(--gold-l)}
#mpx-public-reviews .cta-btn-ghost{
  background:transparent;border:1px solid rgba(201,169,110,.25);padding:13px 24px;
  font-family:'Montserrat',sans-serif;font-size:10px;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;color:var(--td);
  cursor:pointer;transition:all .2s;white-space:nowrap;flex-shrink:0;
}
#mpx-public-reviews .cta-btn-ghost:hover{border-color:var(--gold);color:var(--gold)}

#mpx-public-reviews .state-switcher{display:flex;gap:6px;margin-bottom:32px;flex-wrap:wrap}
#mpx-public-reviews .sw{padding:6px 14px;background:transparent;border:1px solid var(--border);font-family:'Montserrat',sans-serif;font-size:8px;letter-spacing:.1em;text-transform:uppercase;color:var(--td);cursor:pointer;transition:all .18s}
#mpx-public-reviews .sw:hover{border-color:var(--border-s);color:var(--tm)}
#mpx-public-reviews .sw.on{border-color:var(--gold);color:var(--gold);background:rgba(201,169,110,.06)}

#mpx-public-reviews .mpx-reviews-state-panel[hidden]{display:none!important}

@media(max-width:900px){
  #mpx-public-reviews .reviews-grid{grid-template-columns:repeat(2,1fr)}
  #mpx-public-reviews .trust-block{flex-wrap:wrap}
  #mpx-public-reviews .hero-h1{font-size:40px}
}
@media(max-width:600px){
  #mpx-public-reviews .page{padding:0 18px 80px}
  #mpx-public-reviews .reviews-grid{grid-template-columns:1fr}
  #mpx-public-reviews .hero{padding:48px 0 36px}
  #mpx-public-reviews .hero-h1{font-size:32px}
  #mpx-public-reviews .trust-block{flex-direction:column}
  #mpx-public-reviews .trust-cell{border-right:none;border-bottom:1px solid var(--border)}
  #mpx-public-reviews .trust-badge{border-left:none;border-top:1px solid var(--border);width:100%}
  #mpx-public-reviews .cta-strip{flex-direction:column;padding:22px 20px;gap:16px;text-align:center}
  #mpx-public-reviews .cta-strip-text{text-align:center}
  #mpx-public-reviews .filters{gap:5px}
}
