/* ============================================================
   REVIEWS — dark background
   ============================================================ */
.reviews-section {
  background: #272727;
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226,207,196,0.08);
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

/* ---- Top bar ---- */
.reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews-score-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #E2CFC4;
}
.reviews-score-right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.reviews-score-stars {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #C4886A;
  line-height: 1;
}
.reviews-score-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(226,207,196,0.38);
}

/* ---- Featured pull quote ---- */
.reviews-featured {
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.reviews-featured-rule {
  width: clamp(60px, 10vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,136,106,0.55), transparent);
}

.reviews-featured-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 3.8vw, 52px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #E2CFC4;
  max-width: 22ch;
  quotes: none;
}

.reviews-featured-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-featured-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226,207,196,0.50);
}
.reviews-featured-platform {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4886A;
  border: 1px solid rgba(196,136,106,0.35);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ---- Secondary three quotes ---- */
.reviews-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(226,207,196,0.10);
}

.reviews-item {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid rgba(226,207,196,0.10);
  transition: background 300ms ease;
}
.reviews-item:last-child { border-right: none; }
.reviews-item:hover { background: rgba(226,207,196,0.03); }

.reviews-item-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: rgba(226,207,196,0.72);
  flex: 1;
}

.reviews-item-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(226,207,196,0.08);
}
.reviews-item-stars {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #C4886A;
  line-height: 1;
}
.reviews-item-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,169,144,0.65);
}
.reviews-item-platform {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196,136,106,0.55);
  margin-left: auto;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .reviews-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .reviews-secondary { grid-template-columns: 1fr; }
  .reviews-item { border-right: none; border-bottom: 1px solid rgba(226,207,196,0.10); }
  .reviews-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .reviews-featured-quote { font-size: clamp(22px, 6vw, 34px); }
}
