@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  --bg-1: #f7f5ef;
  --bg-2: #dfece5;
  --ink: #11231d;
  --ink-soft: #34564d;
  --accent: #0f766e;
  --accent-soft: #e6f6f4;
  --card: #ffffff;
  --stroke: #d1e1db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(145deg, var(--bg-1), var(--bg-2));
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  overflow: hidden;
}

.hero-inner {
  width: min(940px, 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

.hero-lead {
  margin: 1.25rem auto 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  line-height: 1.75;
}

.hero-glow {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.35;
  z-index: 0;
}

.hero-glow-left {
  top: -7rem;
  left: -5rem;
  background: #1aa58f;
}

.hero-glow-right {
  bottom: -8rem;
  right: -4rem;
  background: #f3b562;
}

.content {
  padding: 1rem 1.25rem 4rem;
}

.testimonials {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.section-head p {
  margin: 0.75rem auto 0;
  color: var(--ink-soft);
  max-width: 760px;
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 1.1rem;
  padding: 1.2rem;
  box-shadow: 0 8px 28px rgba(17, 35, 29, 0.08);
}

.testimonial-text {
  margin: 0;
  line-height: 1.8;
  color: #1d3a31;
}

.testimonial-person {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.testimonial-person strong {
  font-size: 0.98rem;
}

.testimonial-person span {
  font-size: 0.88rem;
  color: #436a5f;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
