/* HESTER ASPHALT — REVIEW FUNNEL PAGE */

.review-hero { padding-bottom: 40px; }
.review-hero .lede { margin-inline: auto; }

.review-shell { max-width: 760px; margin-inline: auto; }

.review-pane { display: none; padding: clamp(30px, 5vw, 54px); }
.review-pane.is-on { display: block; animation: paneFade 0.5s var(--ease); }
@keyframes paneFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* stars */
.star-row { display: flex; justify-content: center; gap: clamp(8px, 2vw, 18px); }
.star-btn {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s var(--ease);
}
.star-btn svg {
  width: clamp(40px, 8vw, 58px);
  height: clamp(40px, 8vw, 58px);
  fill: none;
  stroke: var(--coal-600);
  stroke-width: 1.6;
  transition: fill 0.2s, stroke 0.2s, filter 0.2s;
}
.star-btn:hover { transform: scale(1.12) rotate(-4deg); }
.star-btn.is-lit svg {
  fill: var(--stripe);
  stroke: var(--stripe);
  filter: drop-shadow(0 0 14px rgba(255, 201, 51, 0.45));
}
.star-hint {
  margin-top: 18px;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: var(--font-display);
}

.review-big-ic {
  width: 56px !important;
  height: 56px !important;
  color: var(--orange);
  margin: 0 auto 18px;
  display: block;
}
