@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --bg: #eaf4ef;
  --bg-alt: #ffffff;
  --green-dark: #1f5e3e;
  --green: #2f7a4f;
  --green-btn: #74d4a6;
  --text: #1b1b1b;
  --text-muted: #4b5a52;
  --border: #cfe3d8;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.4em;
  color: #0f2c1d;
}

h1 { font-size: 3.1rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header.site-header {
  padding: 22px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-dark);
}

.logo svg { display: block; }

nav.main-nav {
  display: flex;
  gap: 34px;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

nav.main-nav a.active,
nav.main-nav a:hover {
  border-bottom-color: var(--green);
}

.btn {
  display: inline-block;
  background: var(--green-btn);
  color: #08351f;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Mulish', sans-serif;
}

.btn:hover { filter: brightness(0.96); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
}

/* Hero */
.hero-media {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin: 20px 0 40px;
}

.hero-media img { width: 100%; display: block; }

.hero-copy {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

section { padding: 60px 0; }

.section-head {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); margin: 0; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(116, 212, 166, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green-dark);
}

.stat p { color: var(--text-muted); margin-top: 6px; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.testi p.quote { font-style: italic; margin-bottom: 18px; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Mulish', sans-serif;
  flex-shrink: 0;
}

.testi-author .name { font-weight: 700; }
.testi-author .role { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; }

/* CTA band */
.cta-band {
  background: var(--green-dark);
  color: #eafaf1;
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe8d9; max-width: 560px; margin: 0 auto 24px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  font-weight: 600;
}

/* Forms */
form.contact-form {
  display: grid;
  gap: 16px;
}

form.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
}

form.contact-form textarea { min-height: 120px; resize: vertical; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img { width: 100%; border-radius: 18px; display: block; }

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 40px;
}

footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

footer .foot-links { display: flex; gap: 24px; }

/* Vendor logos row */
.vendor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}

.vendor-list span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #9db6ac;
  font-weight: 600;
}

/* Floating animation */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14px, -18px) scale(1.05); }
}

.grid .card,
.testi-grid .testi {
  animation: gentle-float 5.5s ease-in-out infinite;
}

.grid .card:nth-child(2), .testi-grid .testi:nth-child(2) { animation-delay: 0.5s; }
.grid .card:nth-child(3), .testi-grid .testi:nth-child(3) { animation-delay: 1s; }
.grid .card:nth-child(4), .testi-grid .testi:nth-child(4) { animation-delay: 1.5s; }
.grid .card:nth-child(5) { animation-delay: 2s; }
.grid .card:nth-child(6) { animation-delay: 2.5s; }

.floaty-bg {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .grid .card,
  .testi-grid .testi {
    animation: none;
  }
}

@media (max-width: 860px) {
  h1 { font-size: 2.2rem; }
  .hero-copy, .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
}
