/* We Yone — reviews + leave-a-review pages (new pages only; no impact on existing pages) */

/* ---- reviews listing ---- */
.rv-head { background: linear-gradient(180deg, var(--warm), var(--cream)); padding: 54px 0 40px; border-bottom: 1px solid var(--line); }
.rv-head h1 { margin-bottom: 16px; }
.rv-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.rv-avg { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 3rem; color: var(--ink); line-height: 1; }
.rv-stars { color: #f5b301; font-size: 1.25rem; letter-spacing: 2px; }
.rv-stars .empty { color: #dcd3c4; }
.rv-count { font-size: 0.9rem; color: var(--muted); margin-top: 2px; }
.rv-sub { color: var(--muted); max-width: 620px; margin-bottom: 22px; }

.rv-list-wrap { padding: 44px 0 80px; }
.rv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.rv-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.rv-card .rv-stars { font-size: 1.05rem; }
.rv-card .rv-body { color: var(--ink); font-size: 0.98rem; line-height: 1.55; }
.rv-card .rv-meta { margin-top: auto; font-size: 0.85rem; color: var(--muted); }
.rv-card .rv-name { font-weight: 700; color: var(--ink); }
.rv-empty { text-align: center; padding: 40px 0; }
.rv-empty p { color: var(--muted); margin-bottom: 18px; }

/* ---- leave a review form ---- */
.rv-form-wrap { padding: 50px 0 80px; background: var(--cream); }
.rv-form-card { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.rv-form-card h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.rv-form-intro { color: var(--muted); margin-bottom: 26px; }
#reviewForm label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; color: var(--ink); }
#reviewForm label .opt { font-weight: 400; color: var(--muted); }
#reviewForm input, #reviewForm textarea { width: 100%; margin-top: 7px; padding: 12px 14px; font: inherit; font-size: 16px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink); }
#reviewForm input:focus, #reviewForm textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
#reviewForm textarea { resize: vertical; }
.rv-rating { border: 0; margin: 0 0 20px; padding: 0; }
.rv-rating legend { font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.rv-star-picker { display: flex; gap: 6px; }
.rv-star { background: none; border: 0; padding: 2px; cursor: pointer; font-size: 2.4rem; line-height: 1; color: #dcd3c4; transition: color .12s, transform .08s; }
.rv-star:hover { transform: scale(1.08); }
.rv-star.on { color: #f5b301; }
.rv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.rv-err { color: #b91c1c; font-size: 0.9rem; margin-bottom: 12px; min-height: 1.1em; }
.rv-submit { width: 100%; }
.rv-done { text-align: center; padding: 10px 0; }
.rv-done-icon { font-size: 3rem; line-height: 1; margin-bottom: 10px; }
.rv-done h2 { margin-bottom: 10px; }
.rv-done p { color: var(--muted); margin-bottom: 22px; }
.rv-done .btn { margin: 6px; }

@media (max-width: 560px) {
  .rv-form-card { padding: 24px 20px; }
}
