/* reviews.css — Public reviews page */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.rv-hero {
  background: linear-gradient(160deg, #1a1210 0%, #2e1a17 60%, #3d2420 100%);
  color: #fff;
  padding: 110px 24px 80px;
  text-align: center;
}
.rv-hero-inner { max-width: 720px; margin: 0 auto; }
.rv-hero-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #c9a96e);
  margin-bottom: 20px;
}
.rv-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 18px;
  color: #fff;
}
.rv-hero-title em { font-style: italic; color: var(--gold, #c9a96e); }
.rv-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin: 0 0 48px;
}

/* Stats */
.rv-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rv-stat { text-align: center; }
.rv-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold, #c9a96e);
  line-height: 1;
}
.rv-stat-stars {
  font-size: 1.1rem;
  color: var(--gold, #c9a96e);
  letter-spacing: 2px;
  margin: 4px 0;
}
.rv-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rv-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ── Filters ──────────────────────────────────────────────────────────────── */
.rv-filters {
  background: #faf8f5;
  border-bottom: 1px solid #ede8e2;
  position: sticky;
  top: 0;
  z-index: 80;
}
.rv-filters-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rv-filters-inner::-webkit-scrollbar { display: none; }
.rv-tab {
  flex: 0 0 auto;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-light, #7a6e68);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
}
.rv-tab:hover { color: var(--charcoal, #1a1a1a); }
.rv-tab.active {
  color: var(--deep-rose, #8b4f4b);
  border-bottom-color: var(--deep-rose, #8b4f4b);
  font-weight: 500;
}

/* ── Reviews section ──────────────────────────────────────────────────────── */
.rv-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Review card */
.rv-card {
  background: #fff;
  border: 1px solid #ede8e2;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.rv-card:hover {
  box-shadow: 0 8px 32px rgba(26,18,16,0.09);
  transform: translateY(-2px);
}
.rv-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.rv-card-meta { flex: 1; }
.rv-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal, #1a1a1a);
  margin: 0 0 3px;
}
.rv-card-svc {
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light, #7a6e68);
}
.rv-card-stars {
  color: var(--gold, #c9a96e);
  font-size: 0.95rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.rv-card-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal, #1a1a1a);
  line-height: 1.65;
  flex: 1;
}
.rv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0ece6;
}
.rv-card-date {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: #b5a89e;
  font-weight: 300;
}
.rv-card-featured {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #c9a96e);
}

/* Skeleton cards */
.rv-skeleton {
  background: #fff;
  border: 1px solid #ede8e2;
  border-radius: 14px;
  padding: 28px 24px;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.rv-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: rvSkeleton 1.4s infinite;
}
@keyframes rvSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.rv-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light, #7a6e68);
}
.rv-empty-icon {
  font-size: 2rem;
  color: var(--gold, #c9a96e);
  margin-bottom: 16px;
}
.rv-empty p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

/* Load more */
.rv-load-more { text-align: center; margin-top: 48px; }
.rv-btn-load {
  padding: 14px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-rose, #8b4f4b);
  background: none;
  border: 1.5px solid var(--deep-rose, #8b4f4b);
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rv-btn-load:hover { background: var(--deep-rose, #8b4f4b); color: #fff; }

/* ── Leave a review CTA ───────────────────────────────────────────────────── */
.rv-cta {
  background: linear-gradient(135deg, #f5f0eb 0%, #ede8e2 100%);
  padding: 80px 24px;
  text-align: center;
}
.rv-cta-inner { max-width: 600px; margin: 0 auto; }
.rv-cta-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #c9a96e);
  margin-bottom: 16px;
}
.rv-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal, #1a1a1a);
  margin: 0 0 16px;
}
.rv-cta-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light, #7a6e68);
  line-height: 1.65;
}

/* ── Review submission form ───────────────────────────────────────────────── */
.rv-form-section { padding: 80px 24px; background: #fff; }
.rv-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* How it works sidebar */
.rv-form-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal, #1a1a1a);
  margin: 0 0 28px;
}
.rv-how-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.rv-how-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal, #1a1a1a);
}
.rv-how-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--deep-rose, #8b4f4b);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-form-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light, #7a6e68);
  line-height: 1.5;
}

/* Form */
.rv-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light, #7a6e68);
}
.form-input {
  padding: 14px 16px;
  border: 1.5px solid #ddd6ce;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal, #1a1a1a);
  background: #faf8f5;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold, #c9a96e);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: #fff;
}
.form-textarea { min-height: 130px; resize: vertical; }
.rv-field-hint {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light, #7a6e68);
}
.rv-charcount { text-align: right; }

/* Star rating widget */
.rv-star-row { display: flex; gap: 6px; }
.rv-star {
  font-size: 1.8rem;
  color: #ddd6ce;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s, transform 0.12s;
}
.rv-star:hover,
.rv-star.active { color: var(--gold, #c9a96e); }
.rv-star:hover { transform: scale(1.15); }

/* Checkboxes */
.rv-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal, #1a1a1a);
  cursor: pointer;
  line-height: 1.5;
}
.rv-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--deep-rose, #8b4f4b);
  margin-top: 1px;
}

/* Form message */
.form-msg {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}
.form-msg.error { display: block; background: #fdf2f2; color: #c0392b; border: 1px solid #f5c6cb; }
.form-msg.success { display: block; background: #f0faf4; color: #1e7e34; border: 1px solid #b8dfc8; }

/* Submit button */
.rv-submit {
  padding: 16px 36px;
  background: var(--deep-rose, #8b4f4b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.rv-submit:hover { background: #7a3f3b; transform: translateY(-1px); }
.rv-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.rv-submit-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light, #7a6e68);
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .rv-form-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .rv-form-info-title { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .rv-hero { padding: 90px 20px 60px; }
  .rv-stat-divider { display: none; }
  .rv-stats { gap: 28px; }
  .rv-grid { grid-template-columns: 1fr; gap: 16px; }
  .rv-section { padding: 40px 20px 60px; }
  .rv-cta { padding: 60px 20px; }
  .rv-form-section { padding: 60px 20px; }
  .rv-form-info { grid-template-columns: 1fr; }
  .rv-submit { width: 100%; text-align: center; align-self: stretch; }
}