/* ===== Google + Tripadvisor review slider ===== */
.rev-section { padding: var(--sec-y) 0; background: var(--sand-warm); }
.rev-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .rev-grid { grid-template-columns: 1fr 1fr; } }

.rev-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
}
.rev-head { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin: 0 0 4px; }
.rev-sub { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 var(--sp-5); }
.rev-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--sp-4); margin-bottom: var(--sp-5); border-bottom: 1px solid var(--line); }
.rev-wordmark { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 700; font-size: 21px; }
.rev-g-1 { color: #4285F4; } .rev-g-2 { color: #EA4335; } .rev-g-3 { color: #FBBC04; } .rev-g-4 { color: #4285F4; } .rev-g-5 { color: #34A853; } .rev-g-6 { color: #EA4335; }
.rev-ta-word { color: var(--ink); }
.rev-stars { display: flex; gap: 3px; }
.rev-star { color: #FBBC04; font-size: 19px; line-height: 1; }
.rev-dot { width: 15px; height: 15px; border: 3px solid #00AA6C; border-radius: 50%; position: relative; }
.rev-dot::after { content: ""; position: absolute; inset: 3px; background: #00AA6C; border-radius: 50%; }
.rev-dots-row { display: flex; gap: 5px; }

.rev-slides { position: relative; min-height: 210px; }
.rev-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .45s ease; display: flex; flex-direction: column; justify-content: space-between; }
.rev-slide.is-active { opacity: 1; pointer-events: auto; }
.rev-quote { color: var(--ink); font-size: 15px; line-height: 1.6; margin: 0; }
.rev-meta { display: flex; align-items: center; gap: 12px; margin-top: var(--sp-4); }
.rev-ava { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; font-family: var(--font-display); }
.rev-name { font-weight: 600; color: var(--ink); font-size: 13.5px; display: block; }
.rev-time { color: var(--ink-soft); font-size: 12px; }

.rev-nav { position: absolute; right: var(--sp-6); bottom: var(--sp-5); display: flex; gap: 8px; }
.rev-nav button {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-strong); background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  outline: none;
  transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.rev-nav button:hover { border-color: var(--orange); color: var(--orange); }
.rev-nav button:focus-visible { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint); }

@media (max-width: 480px) {
  .rev-slides { min-height: 240px; }
  .rev-card { padding: var(--sp-5) var(--sp-5) var(--sp-8); }
}
