/* /reviews/ — client-facing review-funnel page.
   Reuses .client-hero / .container / colour vars from main.css. */

.reviews-hero-bleed { min-height: 460px; }
.reviews-hero-bleed .client-hero__sub { max-width: 700px; }

.reviews-intro { padding: 64px 0 16px; background: #fff; }
.reviews-intro .container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.reviews-intro__lead {
  font-family: var(--font-editorial);
  font-size: 24px; line-height: 1.45;
  color: var(--burgundy);
  text-align: center;
  margin: 0;
  font-weight: 400;
}

.reviews-tiles { padding: 48px 0 96px; background: #fff; }
.reviews-tiles .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.reviews-tiles__grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.reviews-tiles__note {
  margin: 36px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(42,26,35,0.55);
}

.review-tile {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(107,33,75,0.10);
  border-radius: 16px;
  text-decoration: none; color: #2A1A23;
  font-family: var(--font-primary);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-tile:hover:not(.review-tile--soon) {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(107,33,75,0.30);
  border-color: var(--gold);
}
.review-tile--soon {
  opacity: 0.55;
  cursor: not-allowed;
}

.review-tile__head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.review-tile__head img {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: #faf6ee;
  padding: 8px;
  object-fit: contain;
  border: 1px solid rgba(107,33,75,0.08);
}
.review-tile__eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 4px;
}
.review-tile__name {
  font-family: var(--font-editorial);
  font-size: 26px; line-height: 1.1;
  color: var(--burgundy);
  font-weight: 400;
}
.review-tile__blurb {
  font-size: 15px; line-height: 1.6;
  color: rgba(42,26,35,0.85);
  margin: 0 0 24px;
  flex: 1;
}
.review-tile__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid rgba(107,33,75,0.08);
  padding-top: 16px;
}
.review-tile__cta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--burgundy);
  text-transform: uppercase;
}
.review-tile__meta {
  font-size: 12px;
  color: rgba(42,26,35,0.55);
}

.reviews-cta {
  background: linear-gradient(180deg, #faf6ee 0%, #fff 100%);
  padding: 80px 0;
  text-align: center;
}
.reviews-cta .container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.reviews-cta h2 {
  font-family: var(--font-editorial);
  font-size: 32px; line-height: 1.2;
  color: var(--burgundy);
  font-weight: 400;
  margin: 0 0 16px;
}
.reviews-cta p {
  font-family: var(--font-primary);
  font-size: 16px; line-height: 1.65;
  color: rgba(42,26,35,0.85);
  margin: 0;
}
.reviews-cta a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .reviews-intro__lead { font-size: 20px; }
  .reviews-cta h2 { font-size: 26px; }
}
