.reviews-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.reviews-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 77, 140, 0.7), rgba(185, 28, 60, 0.5));
  z-index: 1;
}

.reviews-hero .container {
  position: relative;
  z-index: 2;
}

.reviews-hero__content {
  max-width: 800px;
  color: white;
  text-align: center;
  margin: 0 auto;
  padding: var(--space-12) 0;
}

.reviews-hero__content h1 {
  color: white;
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.reviews-hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.95);
  line-height: var(--leading-relaxed);
}

.section-padding {
  padding: var(--space-20) 0;
}

.bg-gray {
  background-color: var(--gray-100);
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.review-card:hover .review-card__image img {
  transform: scale(1.05);
}

.review-card__content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-card__rating {
  color: var(--color-ochre);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}

.review-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.review-card p {
  flex: 1;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
  font-size: var(--text-sm);
}

.reviewer-name {
  font-weight: 600;
  color: var(--color-text-primary);
}

.verified-badge {
  background-color: var(--color-success);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-banner {
  background-color: var(--color-cobalt);
  color: white;
  padding: var(--space-16) 0;
}

.trust-content {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.trust-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.trust-text h2 {
  color: white;
  margin-bottom: var(--space-3);
  font-size: var(--text-3xl);
}

.trust-text p {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-lg);
  margin-bottom: 0;
}

.artwork-gallery {
  background-color: var(--color-background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  grid-auto-rows: 300px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  padding: var(--space-4);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: var(--space-6) var(--space-4) var(--space-4);
  font-size: var(--text-sm);
}

.gallery-item figcaption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.review-filters .section-header {
  margin-bottom: var(--space-8);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.filter-stats {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.artist-spotlights {
  background-color: var(--color-surface);
}

.spotlight-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  overflow: hidden;
}

.spotlight-image-wrapper {
  height: 100%;
  min-height: 250px;
}

.spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-header {
  margin-bottom: var(--space-4);
}

.spotlight-header h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}

.artist-credential {
  color: var(--color-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spotlight-content blockquote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-6) 0;
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-ochre);
}

.spotlight-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.spotlight-footer cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: var(--text-base);
}

.location {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.community-standards {
  background-color: var(--gray-100);
}

.standards-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.standards-text h2 {
  margin-bottom: var(--space-4);
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.standard-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

.standard-icon {
  font-size: var(--text-2xl);
  line-height: 1;
}

.brand-engagement {
  background-color: var(--color-surface);
}

.engagement-example {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--gray-50);
}

.review-thread {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.thread-item {
  padding: var(--space-6);
  border-radius: var(--radius-md);
}

.customer-post {
  background-color: white;
  border-left: 4px solid var(--color-cobalt);
}

.brand-response {
  background-color: white;
  border-left: 4px solid var(--color-crimson);
  margin-left: var(--space-8);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.post-header strong {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
}

.post-meta {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.thread-item p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.review-cta {
  background: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-cobalt) 100%);
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.review-cta h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.review-cta p {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.review-cta .btn--primary {
  background-color: white;
  color: var(--color-crimson)!important;
  border-color: white;
}

.review-cta .btn--primary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item--tall {
    grid-row: span 1;
  }
  
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  
  .spotlight-image-wrapper {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .reviews-hero__content h1 {
    font-size: var(--text-4xl);
  }
  
  .trust-content {
    flex-direction: column;
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .standards-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .brand-response {
    margin-left: var(--space-4);
  }
  
  .section-padding {
    padding: var(--space-16) 0;
  }
}

@media (max-width: 480px) {
  .reviews-hero__content h1 {
    font-size: var(--text-3xl);
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    width: 100%;
  }
}
