/* Page-specific styles for testimonials.html */
.testi-hero {
  padding: clamp(48px, 6vw, 80px) 40px 0;
  text-align: center;
}
.testi-hero .eyebrow { justify-content: center; }
.testi-hero h1 { margin-top: 20px; margin-bottom: 16px; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.testi-hero .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto;
}

.testi-wrap-section {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.testi-section {
  padding: clamp(28px, 4vw, 48px) 0;
}
.testi-section:first-child {
  padding-top: 0;
}
.testi-section + .testi-section {
  border-top: 1px solid var(--line);
}

.testi-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.testi-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.testi-section-head .testi-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--henna);
  text-decoration: none;
}
.testi-section-head .testi-link:hover { text-decoration: underline; }

/* Featured card: full-width, dark, gradient accent bar on left */
.testi-featured {
  display: flex;
  gap: 20px;
  border-radius: 14px;
  padding: clamp(22px, 3vw, 32px) clamp(20px, 3vw, 28px);
  background: var(--pine);
  color: var(--paper);
  margin-bottom: clamp(14px, 2vw, 18px);
  align-items: stretch;
}

.testi-featured-bar {
  width: 4px;
  background: linear-gradient(to bottom, var(--honey), var(--henna));
  border-radius: 2px;
  flex-shrink: 0;
}

.testi-featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testi-featured .testi-quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--honey);
  opacity: 0.3;
  height: 22px;
}

.testi-featured .testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--paper);
  margin: 8px 0 16px;
}

.testi-featured .testi-attribution {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--honey);
  margin: auto 0 0;
}

/* Masonry grid for remaining cards */
.testi-masonry {
  columns: 2;
  column-gap: clamp(14px, 2vw, 18px);
}

/* Card base */
.testi-item {
  break-inside: avoid;
  margin-bottom: clamp(14px, 2vw, 18px);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 26px) clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
}

/* Card variant: dark (pine) */
.testi-item--pine {
  background: var(--pine);
  color: var(--paper);
}
.testi-item--pine .testi-quote-mark {
  color: var(--honey);
}
.testi-item--pine .testi-text {
  color: var(--paper);
}
.testi-item--pine .testi-attribution {
  color: var(--honey);
}

/* Card variant: light (soft) */
.testi-item--soft {
  background: var(--paper-soft);
  color: var(--ink);
}
.testi-item--soft .testi-quote-mark {
  color: var(--henna);
}
.testi-item--soft .testi-text {
  color: var(--ink-soft);
}
.testi-item--soft .testi-attribution {
  color: var(--ink-faint);
}

/* Card variant: warm (henna tint) */
.testi-item--warm {
  background: rgba(158, 92, 54, 0.08);
  border: 1px solid rgba(158, 92, 54, 0.12);
  color: var(--ink);
}
.testi-item--warm .testi-quote-mark {
  color: var(--henna);
}
.testi-item--warm .testi-text {
  color: var(--ink-soft);
}
.testi-item--warm .testi-attribution {
  color: var(--henna);
}

/* Card inner elements */
.testi-quote-mark {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 0.5;
  opacity: 0.35;
  height: 18px;
}

.testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.6;
  margin: 6px 0 14px;
}

.testi-attribution {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: auto 0 0;
  padding-top: 10px;
}

/* CTA */
.testi-cta {
  text-align: center;
  padding: clamp(36px, 5vw, 56px) 40px;
}
.testi-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .testi-masonry { columns: 1; }

  .testi-section-head {
    flex-direction: column;
    gap: 2px;
  }

  .testi-featured {
    flex-direction: column;
    gap: 0;
  }

  .testi-featured-bar {
    width: 100%;
    height: 3px;
    margin-bottom: 14px;
  }
}
