/*
 * Éclore Aesthetics — Testimonial (VISUAL-DESIGN §5.7)
 * ─────────────────────────────────────────────────────────────────────────────
 * An editorial quote, not a review widget: an oversized Familjen quotation
 * mark (hairline tone, decorative), the quote itself in Familjen 600 (not italic),
 * then a quiet Familjen attribution. One per row, held to the narrow measure.
 * No stars, no avatars.
 */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.testimonial-card {
  margin: 0;
  text-align: center;
}

.testimonial-card__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.6;
  color: var(--color-hairline); /* hairline tone — decorative, non-text */
}

.testimonial-card__quote {
  margin: var(--space-sm) 0 var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.625rem, 3.4vw, 2.75rem); /* Pull-quote 26–44px */
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.testimonial-card__footer {
  margin: 0;
}

.testimonial-card__cite {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-3xs);
  font-style: normal;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.testimonial-card__service {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Featured testimonial on the Ink band keeps the same structure; the
   inverse text colour is inherited from .section-bg--ink. */
.section-bg--ink .testimonial-card__quote {
  color: var(--color-text-inverse);
}
