/* =====================================================
   GOOGLE REVIEWS SECTION (home, after "Choose Your Event Space")
   Matches site tokens: #482820 brown, #f9c233 yellow, Anton + Instrument Sans
===================================================== */
.reviews-section {
  position: relative;
  background: #482820;
  color: #fff;
  padding-top: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(72px, 9vw, 130px);
}
.reviews-section * { box-sizing: border-box; }

.reviews-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }

.reviews-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 7vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 18px;
}

/* rating badges */
.reviews-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.reviews-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f1f1f;
  text-decoration: none;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px; font-weight: 500;
  transition: transform 0.2s ease;
}
.reviews-badge:hover { transform: translateY(-2px); color: #1f1f1f; }
.reviews-badge svg { width: 22px; height: 22px; flex: none; }
.reviews-badge strong { font-size: 18px; font-weight: 700; }
.reviews-badge .stars { color: #f9c233; letter-spacing: 1px; font-size: 15px; }
.reviews-badge.tripadvisor { background: #34e0a1; }

/* cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
@media (max-width: 991px) { .reviews-grid { grid-template-columns: minmax(0, 1fr); max-width: 640px; margin: 0 auto; } }

.review-card {
  position: relative;
  background: #ffffff;
  color: #2a1c16;
  border-radius: 22px;
  padding: clamp(22px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.review-card .g-mark { position: absolute; top: 20px; right: 20px; width: 26px; height: 26px; }
.review-stars { color: #f9c233; font-size: 18px; letter-spacing: 2px; line-height: 1; }
.review-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.6;
  margin: 0;
  color: #3a2b24;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: #f9c233; color: #482820;
  display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif; font-size: 18px; letter-spacing: 0.04em;
}
.review-author strong { display: block; font-family: "Instrument Sans", sans-serif; font-size: 15.5px; font-weight: 700; color: #1f1f1f; }
.review-author span { font-family: "Instrument Sans", sans-serif; font-size: 13.5px; color: #7a6a62; }

/* CTA */
.reviews-cta { text-align: center; margin-top: clamp(28px, 4vw, 44px); }
.reviews-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  background: #f9c233; color: #482820;
  font-family: "Instrument Sans", sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.reviews-cta a:hover { transform: translateY(-2px); background: #ffd166; color: #482820; }
.reviews-cta a svg { width: 18px; height: 18px; }

/* container safety (does not rely on Bootstrap being present) */
.reviews-section .container-xl { width: 100%; max-width: 1200px; margin: 0 auto; padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }
