:root {
  --deep: #111a15;
  --forest: #213128;
  --paper: #fbf9f4;
  --cream: #f3eee3;
  --gold: #c7a66a;
  --line: rgba(22, 32, 25, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

.reviews-hero {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 130px);
  background: var(--deep);
  color: #fff;
}

.reviews-hero h1 {
  max-width: 900px;
  margin: 25px 0 32px;
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.035em;
}

.reviews-hero h1 em { color: var(--gold); font-weight: 400; }
.reviews-hero > div > p:last-child { max-width: 720px; color: rgba(255,255,255,.7); font-size: 18px; }

.rating-panel {
  padding: 36px;
  border: 1px solid rgba(199,166,106,.55);
  background: rgba(255,255,255,.035);
}

.rating-panel > span,
.card-type {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rating-panel strong {
  display: block;
  margin: 12px 0 4px;
  font-family: var(--serif);
  font-size: 86px;
  font-weight: 400;
  line-height: 1;
}

.stars { color: var(--gold); letter-spacing: .18em; }
.rating-panel p { margin: 12px 0 0; color: rgba(255,255,255,.62); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

.featured-story {
  padding: clamp(90px, 12vw, 170px) clamp(24px, 10vw, 160px);
  background: var(--paper);
}

.story-label {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #866a3a;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.story-label span { font-family: var(--serif); font-size: 22px; }
.featured-story blockquote {
  max-width: 1120px;
  margin: 54px 0 42px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.18;
  letter-spacing: -.018em;
}

.story-credit { display: flex; gap: 24px; align-items: center; }
.story-credit p { margin: 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.story-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 70px);
  background: #fff;
}

.story-card blockquote {
  margin: 45px 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.3;
}

.story-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: auto;
}

.story-card footer p { margin: 0; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.story-card-dark { background: var(--forest); color: #fff; }
.story-card-dark .card-type { color: #e0c690; }
.story-card-accent { background: var(--cream); }
.story-card-wide { grid-column: 1 / -1; min-height: 420px; }
.story-card-wide blockquote { max-width: 1100px; }

.reviews-actions,
.story-cta {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px);
}

.reviews-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  background: var(--deep);
  color: #fff;
}

.reviews-actions h2,
.story-cta h2 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: .95;
}

.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.reviews-actions .button-outline { border-color: rgba(255,255,255,.5); }

.story-cta {
  text-align: center;
  background: var(--cream);
}

.story-cta p:not(.eyebrow) { max-width: 650px; margin: 28px auto; color: #5b635d; }

@media (max-width: 900px) {
  .reviews-hero,
  .reviews-actions { grid-template-columns: 1fr; }
  .rating-panel { max-width: 420px; }
}

@media (max-width: 700px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-card-wide { grid-column: auto; }
  .story-card { min-height: auto; }
  .story-card blockquote { margin: 32px 0; }
  .story-credit { align-items: flex-start; flex-direction: column; gap: 10px; }
}
