/* TESTIMONIALS PAGE STYLES */

/* ── Hero ── */
.testimonials-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-section) 0;
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
}

.testimonials-hero-inner {
  max-width: 700px;
}

.testimonials-hero h1 {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-lg) 0;
}

.testimonials-hero p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 55ch;
  margin: 0;
}

/* ── Section Headers ── */
.testimonials-section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials-section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

/* ── Featured Testimonial (Juliana) ── */
.testimonials-featured {
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--border);
}

.testimonials-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-tertiary);
  margin-bottom: var(--space-2xl);
}

.testimonials-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonials-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: var(--space-md);
  text-align: center;
}

.testimonials-hero-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--text-primary);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-2xl) 0;
  padding: 0;
  border: none;
  text-align: center;
}

.testimonials-context {
  max-width: 65ch;
  margin: 0 auto var(--space-2xl);
}

.testimonials-context p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.testimonials-context p:last-child {
  margin-bottom: 0;
}

.testimonials-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  max-width: 65ch;
  margin: 0 auto;
}

.testimonials-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 600;
}

.testimonials-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonials-session {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Text Testimonial (Andrew) ── */
.testimonials-text {
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

/* ── CTA ── */
.testimonials-cta {
  padding: var(--space-section) 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.testimonials-cta p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .testimonials-hero {
    padding: var(--space-3xl) 0;
    min-height: auto;
  }

  .testimonials-hero h1 {
    font-size: clamp(1.5rem, 1.25rem + 2vw, 2rem);
  }
}

@media (max-width: 480px) {
  .testimonials-hero {
    padding: var(--space-2xl) 0;
  }
}
