// ============================================
// Testimonial strip
// ============================================

function Testimonial() {
  const PC = window.PC;
  return (
    <section className="section section--tight testimonial">
      <div className="wrap">
        <div className="testimonial__inner reveal">
          <svg width="48" height="36" viewBox="0 0 48 36" className="testimonial__mark" fill="currentColor" aria-hidden="true">
            <path d="M0 36V18C0 8 6 0 16 0v6c-4 0-8 4-8 10h8v20H0zm26 0V18C26 8 32 0 42 0v6c-4 0-8 4-8 10h8v20H26z"/>
          </svg>
          <blockquote className="serif testimonial__quote">
            "PolyCraft's renders made our sales center <span className="it gold-text">unnecessary</span>. Buyers were closing on lots before we'd broken ground — just from the visuals."
          </blockquote>
          <footer className="testimonial__foot">
            <span className="gold-line"></span>
            <div className="testimonial__attr">
              <strong>{PC.testimonial.who}</strong>
              <span className="label">{PC.testimonial.role}</span>
            </div>
          </footer>
        </div>
      </div>
    </section>
  );
}

window.Testimonial = Testimonial;
