/* ============================================================
   REVIEWS
   Dark editorial interlude. Ruled masthead, one featured
   quote, a ruled row of three, links out to Google and Yell.
   ============================================================ */

.reviews {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(4.5rem, 10vw, 9rem);
}

/* ---- masthead ---- */
.reviews-masthead {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.reviews-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(247, 242, 234, 0.55);
  white-space: nowrap;
}
.reviews-rule {
  flex: 1;
  height: 1px;
  background: rgba(247, 242, 234, 0.18);
}
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.reviews-stars svg { width: 16px; height: 16px; }
.reviews-score {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-1);
  line-height: 1;
  color: var(--cream);
}

/* ---- featured quote ---- */
.reviews-featured {
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
  max-width: 40rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .reviews-featured { max-width: 46rem; }
}
.reviews-featured p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.6rem);
  line-height: 1.28;
  color: var(--cream);
}
.reviews-featured cite {
  display: block;
  margin-top: clamp(1.2rem, 3vw, 2rem);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: rgba(247, 242, 234, 0.78);
}
.reviews-featured cite span {
  color: rgba(247, 242, 234, 0.45);
}

/* ---- ruled row of three ---- */
.reviews-row {
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(247, 242, 234, 0.16);
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}
@media (min-width: 800px) {
  .reviews-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
}
.reviews-note {
  text-align: center;
  padding-inline: clamp(1rem, 2.5vw, 2.25rem);
  position: relative;
}
@media (min-width: 800px) {
  .reviews-note + .reviews-note::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 1px;
    background: rgba(247, 242, 234, 0.16);
  }
}
.reviews-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.45;
  color: rgba(247, 242, 234, 0.92);
}
.reviews-note cite {
  display: block;
  margin-top: var(--space-s);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 242, 234, 0.5);
}

/* ---- footer line + links ---- */
.reviews-foot {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
  text-align: center;
}
.reviews-proof {
  font-family: var(--font-body);
  font-size: var(--step--1);
  color: rgba(247, 242, 234, 0.6);
}
.reviews-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

/* ---- stagger ---- */
.reviews-note.reveal:nth-child(1) { transition-delay: 0.04s; }
.reviews-note.reveal:nth-child(2) { transition-delay: 0.12s; }
.reviews-note.reveal:nth-child(3) { transition-delay: 0.20s; }