/* ==========================================================================
   CUSTOMER REVIEWS — ONE compact luxury testimonial stage. Only one
   review is ever visible; the rest rotate through the same panel via
   Swiper fade + a small GSAP horizontal drift (see reviews.js). There is
   deliberately no second card, no stacked list — "single stage" is the
   whole point of this redesign.
   ========================================================================== */
.reviews-section{
  width: 100%;
  padding: clamp(32px, 3.6vw, 44px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
  position: relative;
}

.reviews-section .section-head{
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(16px, 2.2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reviews-section .eyebrow{
  font-family: var(--font-latin);
  font-style: italic;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: var(--text-small);
  color: var(--bronze);
}
.reviews-section h2{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(var(--text-5), 3.4vw, var(--text-6));
  color: var(--forest);
}

/* ---- The single stage. A radial glow behind it (not another image
   background) is what separates this section from the product/gallery
   sections above it. ---- */
.review-stage{
  position: relative;
  max-width: 1180px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.review-stage::before{
  content: "";
  position: absolute;
  inset: -10% -6%;
  background: radial-gradient(ellipse at center, rgba(200,168,107,0.12) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.review-swiper{
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px;
}
.review-swiper .swiper-wrapper{ align-items: stretch; }

.review-card{
  position: relative;
  height: clamp(290px, 30vw, 320px);
  background: linear-gradient(180deg, rgba(253,252,250,.94) 0%, rgba(239,232,221,.86) 100%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,168,107,.22);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 1px 2px rgba(24,20,14,0.04),
    0 16px 32px -14px rgba(24,20,14,0.14),
    0 40px 72px -32px rgba(24,20,14,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-5) clamp(28px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
}

/* One oversized decorative quotation mark, one corner only, very faint */
.review-quote-mark{
  position: absolute;
  top: -6px;
  inset-inline-end: var(--sp-4);
  font-family: var(--font-latin);
  font-size: 140px;
  line-height: 1;
  color: var(--gold);
  opacity: .12;
  pointer-events: none;
}

.review-stars{
  color: var(--gold);
  font-size: var(--text-2);
  letter-spacing: 4px;
}

.review-quote{
  font-family: var(--font-display);
  font-size: clamp(var(--text-4), 1.8vw, 30px);
  line-height: 1.8;
  color: var(--ink);
  max-width: 800px;
}

.review-author{
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.review-thumb{
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px -4px rgba(24,20,14,0.2);
}
.review-thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.review-author-text{ display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.review-author-text .name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-1);
  color: var(--forest);
}
.review-author-text .city{
  font-size: var(--text-small);
  color: var(--bronze);
}

/* ---------------------------------------------------------------------- */
/* Navigation — small circular arrows inside the stage, not the section   */
/* ---------------------------------------------------------------------- */
.review-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid rgba(200,168,107,.4);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
}
.review-nav svg{ width: 18px; height: 18px; }
.review-nav:hover{ transform: translateY(-50%) scale(1.06); box-shadow: var(--shadow-2); background: var(--sand); }
.review-nav-prev{ right: -8px; }
.review-nav-next{ left: -8px; }

@media (min-width: 1280px){
  .review-nav-prev{ right: -22px; }
  .review-nav-next{ left: -22px; }
}

/* ---------------------------------------------------------------------- */
/* Pagination — minimal dots below the stage                              */
/* ---------------------------------------------------------------------- */
.review-pagination{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-3);
}
.review-pagination .swiper-pagination-bullet{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  opacity: 1;
  margin: 0;
  transition: width 350ms var(--ease), background 350ms var(--ease);
}
.review-pagination .swiper-pagination-bullet-active{
  width: 20px;
  background: var(--gold);
}

@media (prefers-reduced-motion: reduce){
  .review-card, .review-nav{ transition-duration: .01ms !important; }
}

@media (max-width: 1023px){
  .review-card{ padding-inline: clamp(24px, 5vw, 48px); }
  .review-quote-mark{ font-size: 110px; }
}

@media (max-width: 640px){
  .reviews-section{ padding: clamp(32px, 8vw, 44px) 0; }
  .review-stage{ width: calc(100% - 20px); }
  .review-card{
    height: auto;
    min-height: 320px;
    padding: var(--sp-4) var(--sp-3);
    gap: var(--sp-2);
  }
  .review-quote{ font-size: var(--text-3); }
  .review-nav{ display: none; } /* touch swipe is primary nav below desktop */
  .review-quote-mark{ font-size: 90px; inset-inline-end: var(--sp-2); }
}
