:root {
  --green: #2f6b3e;
  --green-dark: #173d26;
  --green-soft: #edf6e8;
  --gold: #e9b949;
  --corn: #ffd76a;
  --earth: #8b6849;
  --cream: #fbf7ec;
  --white: #ffffff;
  --text: #263329;
  --muted: #647064;
  --line: #e4e8dc;
  --shadow: 0 18px 45px rgba(47, 107, 62, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.section-kicker {
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yellow-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.yellow-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.yellow-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yellow-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 61, 38, 0.9), rgba(47, 107, 62, 0.55) 58%, rgba(255, 215, 106, 0.12)),
    linear-gradient(0deg, var(--cream), rgba(251, 247, 236, 0) 34%);
}

.yellow-hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 104px;
  color: var(--white);
}

.yellow-hero-content .section-kicker {
  color: var(--corn);
}

.yellow-hero h1 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(2.55rem, 6vw, 4.9rem);
  font-weight: 950;
  line-height: 0.98;
}

.yellow-hero p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 20px;
  color: #fff8df;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary,
.btn-card {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.btn-card {
  color: #273016;
  background: linear-gradient(135deg, var(--corn), var(--gold));
  box-shadow: 0 14px 28px rgba(233, 185, 73, 0.24);
}

.btn-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-card:hover {
  transform: translateY(-2px);
}

.quick-stats {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-stats article {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(47, 107, 62, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quick-stats strong,
.quick-stats span {
  display: block;
}

.quick-stats strong {
  color: var(--green-dark);
  font-size: 1.25rem;
}

.quick-stats span {
  margin-top: 6px;
  color: var(--muted);
}

.impact-section,
.proof-strip,
.product-section,
.why-section,
.gallery-section,
.advisor-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.impact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 38px;
  padding: 76px 0 34px;
}

.impact-copy h2 {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 950;
  line-height: 1.04;
}

.impact-copy p {
  max-width: 570px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.impact-copy .btn-primary {
  margin-top: 24px;
}

.impact-gallery {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  grid-template-rows: 185px 185px;
  gap: 16px;
}

.impact-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-soft);
  box-shadow: 0 12px 30px rgba(47, 107, 62, 0.1);
}

.impact-gallery .impact-main {
  grid-row: span 2;
}

.impact-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 30px;
}

.proof-strip article {
  padding: 24px;
  border: 1px solid rgba(233, 185, 73, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 215, 106, 0.22), rgba(255, 255, 255, 0)),
    var(--white);
  text-align: center;
}

.proof-strip span,
.proof-strip strong {
  display: block;
}

.proof-strip span {
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip strong {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 1.12rem;
  line-height: 1.25;
}

.product-section {
  padding: 62px 0 54px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-section > .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.advisor-section h2 {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.06;
}

.section-heading p:not(.section-kicker),
.advisor-section p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.seed-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(47, 107, 62, 0.1);
  display: flex;
  flex-direction: column;
}

.seed-card.featured {
  border-color: rgba(233, 185, 73, 0.52);
}

.seed-image {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 34px;
  background:
    radial-gradient(circle at center, rgba(255, 215, 106, 0.2), transparent 58%),
    var(--green-soft);
}

.seed-image > img:first-child {
  width: 80%;
  max-width: 390px;
  height: 240px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.brand-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 88px;
  max-height: 52px;
  object-fit: contain;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.seed-content {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.seed-type {
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seed-content h3 {
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 1.72rem;
  line-height: 1;
}

.seed-content p {
  margin-top: 10px;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.spec-grid div {
  min-height: 76px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcf7;
}

.spec-grid span,
.spec-grid strong {
  display: block;
}

.spec-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.spec-grid strong {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.btn-card {
  margin-top: 22px;
  align-self: flex-start;
}

.why-section {
  padding: 56px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  text-align: center;
}

.why-grid span {
  color: var(--gold);
  font-weight: 950;
}

.why-grid h3 {
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.why-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.gallery-section {
  padding: 46px 0 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(47, 107, 62, 0.1);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:last-child {
  grid-column: span 2;
}

.advisor-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 70px;
  padding: 42px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 215, 106, 0.36), rgba(255, 255, 255, 0)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.advisor-section p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 960px) {
  .quick-stats,
  .proof-strip,
  .seed-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-section {
    grid-template-columns: 1fr;
  }

  .advisor-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .yellow-hero {
    min-height: 560px;
  }

  .yellow-hero-content {
    padding-bottom: 92px;
  }

  .yellow-hero h1 {
    font-size: 2.55rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-card {
    width: 100%;
  }

  .quick-stats,
  .proof-strip,
  .seed-grid,
  .spec-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .impact-section {
    padding-top: 58px;
  }

  .impact-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .impact-gallery figure,
  .impact-gallery .impact-main {
    grid-row: auto;
    height: 250px;
  }

  .quick-stats {
    margin-top: -36px;
  }

  .seed-image {
    min-height: 245px;
    padding: 24px;
  }

  .seed-image > img:first-child {
    width: 80%;
    max-width: 300px;
    height: 200px;
  }

  .gallery-grid img {
    height: 250px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .advisor-section {
    padding: 30px 22px;
    border-radius: 22px;
  }
}
