.section--hero-testimonials {
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-10);
  align-items: center;
}

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

.hero-copy {
  max-width: 640px;
}

.hero-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-3);
}

.hero-sub {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.hero-cta-group {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-meta {
  margin-top: var(--space-4);
}

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

.hero-media {
  max-width: 520px;
  margin-left: auto;
}

.hero-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(227, 181, 89, 0.25);
  background: radial-gradient(circle at top, rgba(227, 181, 89, 0.25), transparent 55%), var(--color-bg-elevated);
}

.hero-image-card img {
  width: 100%;
  height: auto;
}

.hero-image-card figcaption {
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-header h2 {
  margin-bottom: var(--space-2);
}

.section-header p {
  max-width: 720px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

.testimonial-text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

.testimonial-footer {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.testimonial-tagline {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.testimonials-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  align-items: flex-start;
  gap: var(--space-10);
}

.gallery-list {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.gallery-media {
  display: grid;
  gap: var(--space-4);
}

.gallery-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-image-card img {
  width: 100%;
  height: auto;
}

.gallery-image-card figcaption {
  padding: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.gallery-image-card.large {
  transform: translateX(4%);
}

.gallery-image-card.small {
  max-width: 320px;
  justify-self: flex-end;
}

@media (max-width: 900px) {
  .gallery-image-card.large {
    transform: none;
  }

  .gallery-image-card.small {
    justify-self: stretch;
    max-width: none;
  }
}

.trust-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.trust-bullets {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.trust-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.trust-item p {
  font-size: var(--font-size-sm);
}

.trust-aside {
  align-self: stretch;
}

.trust-list {
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.trust-note {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.next-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(227, 181, 89, 0.16), transparent 55%), var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
}

.next-step-copy {
  max-width: 720px;
}

.next-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .next-step {
    padding: var(--space-4);
  }

  .next-step-actions {
    width: 100%;
  }

  .next-step-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
