
/* ---------- Quote Rotator (rotating review carousel) ---------- */
.quote-rotator {
  margin: 3.2rem auto 0;
  max-width: 720px;
  padding: 3rem 2rem 2.6rem;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  text-align: center;
}
.qr-eyebrow {
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.6);
  margin-bottom: 1.2rem;
}
.qr-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.qr-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.5;
  color: var(--text);
  min-height: 6.5em;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0.34em;
  margin: 0 auto;
}
.qr-quote .qr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(3px);
}
.js-qr .qr-quote .qr-word {
  animation: qr-word-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes qr-word-in {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.qr-attrib {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
}
.js-qr .qr-attrib {
  animation: qr-fade-up 600ms ease-out 260ms forwards;
}
@keyframes qr-fade-up {
  to { opacity: 1; transform: none; }
}
.qr-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; }
.qr-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.05rem; color: var(--text); }
.qr-tag {
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.qr-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.qr-dots button {
  width: 6px; height: 6px;
  border-radius: 3px;
  border: none;
  padding: 0;
  background: rgba(232, 228, 218, 0.28);
  cursor: pointer;
  transition: width 400ms ease, background 400ms ease;
}
.qr-dots button.is-active {
  width: 20px;
  background: var(--gold);
}
@media (prefers-reduced-motion: reduce) {
  .qr-quote .qr-word, .qr-attrib { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}
