/* =============================================
   HERYERPARKOUR — Reviews Section
   3 eğik kart, yıldız, hover offset shadow
   ============================================= */

.reviews-section {
  background: var(--bg-primary);
  padding: 120px 0;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -1px;
}

/* Transition from wall */
.reviews-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-wall) 0%, rgba(42, 37, 32, 0.6) 30%, rgba(42, 37, 32, 0.15) 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.reviews-section > .container { position: relative; z-index: 1; }
.reviews-section .sec-label { color: var(--accent); }

/* Title override */
.reviews-title .letter {
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
}

.reviews-title .letter.stroke-letter {
  -webkit-text-stroke: 2px var(--text-primary) !important;
  -webkit-text-fill-color: transparent !important;
}

/* Grid */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.rev-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--duration-slow) var(--ease-out);
}

.rev-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card inner — her biri farklı clip-path */
.rev-inner {
  background: white;
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  clip-path: var(--clip-card-1);
  box-shadow: var(--shadow-md);
}

.rev-card:nth-child(2) .rev-inner { clip-path: var(--clip-card-2); }
.rev-card:nth-child(3) .rev-inner { clip-path: var(--clip-card-3); }

.rev-card:hover .rev-inner {
  transform: rotate(0deg) translateY(-8px) !important;
  box-shadow: var(--shadow-accent);
}

/* Stars */
.rev-stars {
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: var(--ff-handwrite);
}

/* Quote */
.rev-inner blockquote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

/* Author */
.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 900;
  color: white;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  position: relative;
  letter-spacing: 1px;
}

.rev-card:nth-child(1) .rev-avatar { background: var(--accent); }
.rev-card:nth-child(2) .rev-avatar { background: var(--cyan); }
.rev-card:nth-child(3) .rev-avatar { background: var(--lime); color: var(--bg-dark); }

.rev-name {
  font-family: var(--ff-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--text-primary);
}

.rev-detail {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rev-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rev-card:nth-child(3) { grid-column: span 1; max-width: none; }
}

@media (max-width: 768px) {
  .rev-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .rev-card:nth-child(3) { grid-column: span 1; max-width: none; }
  .rev-inner { padding: 20px; transform: none !important; }
  .rev-inner blockquote { font-size: 13px; margin-bottom: 14px; }
  .rev-stars { font-size: 16px; margin-bottom: 10px; }
  .rev-avatar { width: 36px; height: 36px; font-size: 16px; }
  .rev-name { font-size: 12px; }
  .rev-detail { font-size: 11px; }
  .reviews-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .rev-grid { grid-template-columns: 1fr; }
}
