/* ============================================================
   MIMI CROSS — Testimonials Page Styles
   ============================================================ */

.testimonials-section { background: var(--off-white); }

.testimonials-intro {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ---- Grid ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ---- Card ---- */
.testimonial-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Featured spans 2 columns */
.testimonial-card--featured {
  grid-column: span 2;
  background: var(--navy);
  border-color: rgba(184,147,74,0.25);
}
.testimonial-card--featured .testimonial-quote-mark {
  color: rgba(184,147,74,0.2);
}
.testimonial-card--featured .testimonial-body {
  color: rgba(245,240,232,0.8);
}
.testimonial-card--featured .testimonial-name {
  color: var(--ivory);
}
.testimonial-card--featured .testimonial-affirmation {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  line-height: 1.55;
}

/* ---- Quote Mark ---- */
.testimonial-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(184,147,74,0.18);
  font-style: normal;
  pointer-events: none;
  user-select: none;
  margin-bottom: -0.5rem;
}

/* ---- Body ---- */
.testimonial-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--slate);
  font-style: normal;
  flex: 1;
}

/* ---- Footer ---- */
.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.testimonial-card--featured .testimonial-footer {
  border-color: rgba(184,147,74,0.2);
}
.testimonial-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}
.testimonial-context {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- CTA ---- */
.testimonials-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card--featured {
    grid-column: span 1;
  }
}
