:root {
  --green: #2f6b46;
  --green-dark: #1f4930;
  --green-light: #c7e4cf;
  --stone: #f5f7f3;
  --blue: #4a718a;
  --text: #1c3428;
  --text-soft: #355540;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  background: var(--stone);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.trim {
  clip-path: inset(2px);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}

p {
  margin: 0.5rem 0 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
}

.section {
  padding: 4rem clamp(1.5rem, 4vw, 5rem);
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  gap: 1rem;
  background: rgba(245, 247, 243, 0.94);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid #dfe8e1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  background: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(18, 57, 38, 0.12);
  border: 1px solid #e5efe8;
}

.nav a {
  margin-left: 0.6rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav .pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.nav .pill:hover,
.btn.primary:hover {
  background: var(--green-dark);
}

.nav a:not(.pill):hover {
  background: #ecf3ee;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 1.5rem;
  padding: 3.5rem clamp(1.5rem, 4vw, 5rem) 2.5rem;
  background: linear-gradient(135deg, #dceee2, #f5f7f3);
  position: relative;
}

.hero-brand {
  display: inline-block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green);
  background: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(18, 57, 38, 0.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(47, 107, 70, 0.14), transparent 40%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero-copy p {
  color: var(--text-soft);
}

.hero-right {
  position: relative;
  z-index: 1;
}

.hero-main {
  width: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 40px rgba(28, 52, 40, 0.18);
}

.hero-card {
  position: absolute;
  bottom: 10%;
  right: 10%;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(18, 57, 38, 0.15);
  max-width: 220px;
  font-weight: 600;
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-stats div {
  background: #ecf3ee;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #dfe8e1;
}

.hero-stats strong {
  display: block;
  color: var(--green);
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--green);
  color: #fff;
}

.btn.ghost {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.section.about,
.section.context,
.section.value,
.section.feature,
.section.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.section.about {
  background: #e2f0e6;
}

.spotlight-card {
  background: #fff;
  border: 1px solid #dfe8e1;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(18, 57, 38, 0.08);
}

.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.founder-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.section.value {
  background: #d4ead9;
}

.section.feature {
  background: #ecf3ee;
}

.text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.figure img {
  width: 100%;
  height: 100%;
}

.crop-founder {
  object-fit: cover;
  object-position: 30% center;
  min-height: 320px;
}

.crop-wide {
  object-fit: cover;
  object-position: center;
  min-height: 260px;
}

.crop-vertical {
  object-fit: cover;
  object-position: 65% center;
  min-height: 320px;
}

.crop-plant {
  object-fit: cover;
  object-position: center;
  min-height: 280px;
}

.pillars-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
}

.pill-item {
  background: #e6f1e8;
  border: 1px solid #d6e7dc;
  border-radius: 12px;
  padding: 1rem;
}

.pill-item h4 {
  margin: 0 0 0.35rem;
}

.feature-copy {
  background: #fff;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid #dfe8e1;
  box-shadow: 0 10px 24px rgba(18, 57, 38, 0.1);
}

.bullets {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.solutions {
  background: #e4f1e8;
  color: var(--text);
}

.solutions-header h2,
.audience-header h2 {
  margin-top: 0.4rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.solution {
  background: #fff;
  border: 1px solid #dfe8e1;
  border-radius: 12px;
  padding: 1.1rem;
  color: var(--text-soft);
}

.process {
  background: #e9f2ec;
}

.crop-stone {
  object-fit: cover;
  object-position: 70% center;
  min-height: 280px;
}

.audience {
  background: #d7eadf;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.aud-card {
  background: #edf5ef;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5e4d9;
  box-shadow: 0 10px 28px rgba(18, 57, 38, 0.12);
}

.aud-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.aud-card h3 {
  margin: 1rem 1rem 0.4rem;
}

.aud-card p {
  margin: 0 1rem 1rem;
}

.crop-aud { object-position: 15% center; }
.crop-aud2 { object-position: 50% center; }
.crop-aud3 { object-position: 85% center; }

.contact {
  background: #f2f6f2;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #dfe8e1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  box-shadow: 0 14px 34px rgba(28, 52, 40, 0.12);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.crop-fern {
  object-fit: cover;
  object-position: center;
  min-height: 260px;
}

@media (max-width: 720px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .top {
    position: static;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-card {
    position: static;
    margin-top: 0.5rem;
  }
}
