/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.rv-hero {
  background: var(--brown);
  padding: 8rem 5% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,87,42,0.15) 0%, transparent 70%);
}
.rv-hero-inner { position: relative; max-width: 640px; margin: 0 auto; }
.rv-hero .label { color: var(--gold); margin-bottom: 1rem; }
.rv-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.rv-hero h1 em { font-style: italic; color: var(--gold); }
.rv-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 5%;
}
.rv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(196,87,42,0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rv-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.rv-quote { font-size: 0.95rem; line-height: 1.75; color: #555; margin: 0; flex: 1; font-style: italic; }
.rv-author { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 0.75rem; border-top: 1px solid rgba(196,87,42,0.08); }
.rv-name { font-weight: 600; font-size: 0.9rem; color: var(--brown); }
.rv-event { font-size: 0.78rem; color: var(--terracotta); font-weight: 500; }

.rv-cta {
  background: var(--terracotta);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, transparent 70%);
}
.rv-cta-inner { position: relative; max-width: 580px; margin: 0 auto; }
.rv-cta .label { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.rv-cta h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff; margin: 0 0 1rem; }
.rv-cta h2 em { font-style: italic; color: var(--gold); }
.rv-cta p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; margin: 0 0 2rem; }
.rv-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.rv-cta-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.rv-cta-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 860px) {
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-cta-actions { flex-direction: column; align-items: center; }
}
