:root {
  font-family:
    Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  color: #213b29;
  background: #fffdf7;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fffdf7;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f6c453;
  outline-offset: 3px;
}

:root {
  --ink: #14261a;
  --muted: #667468;
  --leaf: #235c38;
  --leaf-dark: #12341f;
  --leaf-soft: #e8f0e3;
  --gold: #a66f1e;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #dfe7d9;
  --shadow: 0 20px 55px rgba(27, 52, 32, 0.1);
  --shadow-strong: 0 28px 80px rgba(27, 52, 32, 0.18);
  --radius: 8px;
}

main {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(166, 111, 30, 0.1), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, #f6f8f0 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(18, 52, 31, 0.1);
  backdrop-filter: blur(16px);
  animation: dropIn 560ms ease both;
}

.brand,
nav,
.hero-actions,
.hero-proof,
.filter-buttons {
  display: flex;
  align-items: center;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: #fffdf8;
  background: #214f08;
}

.top-bar-items {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: stretch;
  min-height: 50px;
}

.top-bar-items span,
.top-social {
  display: flex;
  align-items: center;
}

.top-bar-items span {
  gap: 10px;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.top-bar-items span:first-child {
  padding-left: 0;
  border-left: 0;
}

.top-bar-items b {
  color: #f1cf60;
  font-size: 1.24rem;
  font-weight: 700;
}

.top-social {
  gap: 18px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.top-social a {
  color: #fffdf8;
  text-decoration: none;
}

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  width: 250px;
  height: 88px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 34px);
  flex-wrap: wrap;
  padding: 0 clamp(20px, 4vw, 62px);
}

nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-radius: 999px;
  color: #1f3024;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  color: var(--leaf);
}

nav a[aria-current='page'] {
  color: var(--leaf);
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 96px;
  padding-left: 24px;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fffdf8;
  background: #5d9654;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button {
  display: grid;
  gap: 5px;
  width: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #5d9654;
}

.menu-button span:nth-child(2) {
  width: 70%;
  justify-self: end;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-slider {
  position: relative;
  min-height: calc(100svh - 120px);
  overflow: visible;
  background: var(--leaf-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(10px);
  opacity: 0;
  transform: scale(1.06);
  transition:
    filter 900ms ease,
    opacity 900ms ease,
    transform 5200ms ease;
}

.hero-slide.active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 26, 14, 0.82) 0%, rgba(8, 26, 14, 0.62) 42%, rgba(8, 26, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 26, 14, 0.28) 0%, rgba(8, 26, 14, 0.42) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100svh - 120px);
  padding: clamp(42px, 5vw, 68px) clamp(20px, 5vw, 72px)
    clamp(145px, 12vw, 190px);
  text-align: center;
}

.hero-copy {
  max-width: 1220px;
  animation: heroTextBlurIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 3.85vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-slider h1 {
  color: var(--paper);
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.hero-text {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
  color: #47584b;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.hero-slider .hero-text {
  color: rgba(255, 253, 248, 0.88);
}

.slide-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f6d28f;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
form button {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-button,
form button {
  border: 0;
  color: var(--paper);
  background: var(--leaf);
  box-shadow: 0 14px 30px rgba(35, 92, 56, 0.22);
}

.primary-button:hover,
form button:hover {
  background: #1d4e30;
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(35, 92, 56, 0.18);
}

.hero-slider .secondary-button {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-proof {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-proof span {
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid rgba(35, 92, 56, 0.14);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(27, 52, 32, 0.08);
  font-size: 0.8rem;
}

.hero-slider .hero-proof span {
  color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  margin-bottom: 3px;
  color: var(--leaf);
  font-size: 1.25rem;
}

.hero-slider .hero-proof strong {
  color: #f6d28f;
}

.slider-controls {
  position: absolute;
  inset: 50% clamp(18px, 3vw, 42px) auto;
  z-index: 3;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 1.8rem;
  line-height: 1;
  pointer-events: auto;
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.slider-dots button.active {
  width: 54px;
  background: #f6d28f;
}

.hero-feature-panel {
  position: absolute;
  right: clamp(20px, 7vw, 138px);
  bottom: -160px;
  left: clamp(20px, 7vw, 138px);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(40px, 4.5vw, 64px);
  border: 1px solid rgba(35, 92, 56, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 240, 227, 0.96)),
    #fff;
  box-shadow:
    0 34px 90px rgba(18, 52, 31, 0.24),
    0 10px 28px rgba(18, 52, 31, 0.12);
  overflow: hidden;
}

.hero-feature-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 8% 18%, rgba(35, 92, 56, 0.1), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(246, 207, 47, 0.12), transparent 14rem);
  pointer-events: none;
}

.stat strong,
.stat span {
  display: block;
}

.section,
.program-band,
.operation-band,
.contact {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 72px);
  animation: sectionRise 760ms ease both;
}

.section > *,
.program-band > *,
.operation-band > *,
.contact > * {
  max-width: 1180px;
}

.intro-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  padding: 0;
  text-align: left;
}

.intro-feature::after {
  content: attr(data-watermark);
  position: absolute;
}

.intro-feature-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  border: 8px solid #eef5e9;
  color: #f6d28f;
  background:
    radial-gradient(circle at center, #235c38 0 38%, #19452a 39% 100%);
  box-shadow:
    0 18px 36px rgba(35, 92, 56, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  font-size: 1.7rem;
  line-height: 1;
}

.intro-feature-icon svg {
  display: block;
  width: 32px;
  height: 32px;
}

.intro-feature h3 {
  max-width: none;
  margin: 0 0 16px;
  color: #2b2d2b;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  font-weight: 900;
  line-height: 1.35;
}

.intro-feature p {
  max-width: none;
  margin: 0;
  color: #787b74;
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  width: min(1180px, calc(100% - clamp(40px, 10vw, 144px)));
  margin: 0 auto;
  padding: clamp(210px, 16vw, 250px) 0 clamp(42px, 5vw, 72px);
  background: transparent;
}

.home-about > * {
  max-width: 1180px;
}

.home-about .section-heading {
  margin-bottom: 34px;
}

.home-about h2 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
}

.home-about h2 span {
  color: #62aa1f;
}

.home-about .section-heading::after {
  content: '';
  display: block;
  width: 238px;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(35, 92, 56, 0.22), transparent);
}

.home-about-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: #62aa1f;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 800;
  line-height: 1.45;
}

.home-about-copy > p:not(.home-about-lead) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-about-copy .section-heading,
.home-about-lead,
.home-about-copy > p:not(.home-about-lead),
.home-about-actions {
  opacity: 0;
  transform: translateX(-34px);
}

.home-about.in-view .home-about-copy .section-heading,
.home-about.in-view .home-about-lead,
.home-about.in-view .home-about-copy > p:not(.home-about-lead),
.home-about.in-view .home-about-actions {
  animation: aboutTextSlideIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-about.in-view .home-about-lead {
  animation-delay: 120ms;
}

.home-about.in-view .home-about-copy > p:nth-of-type(2) {
  animation-delay: 220ms;
}

.home-about.in-view .home-about-copy > p:nth-of-type(3) {
  animation-delay: 320ms;
}

.home-about.in-view .home-about-actions {
  animation-delay: 420ms;
}

.home-about-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  flex-wrap: wrap;
  margin-top: 34px;
}

.home-about-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 900;
  text-decoration: none;
}

.home-about-call span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #62aa1f;
  border-radius: 50%;
  color: #62aa1f;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.home-about-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.home-about-media img {
  display: block;
  width: 100%;
  min-height: 360px;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.featured-categories {
  position: relative;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px)
    clamp(62px, 8vw, 108px);
  background:
    linear-gradient(180deg, #fff 0%, #fbfdf7 100%);
  overflow: hidden;
}

.featured-categories::before {
  content: '';
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 42vw;
  max-width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(166, 111, 30, 0.08);
  pointer-events: none;
}

.featured-categories h2 {
  position: relative;
  max-width: 1180px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  color: #050805;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
}

.featured-categories h2::after {
  content: '';
  display: block;
  width: 118px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #62aa1f, #a66f1e);
}

.featured-category-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  max-width: 1180px;
  margin: 0 auto;
}

.featured-category-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  min-height: 248px;
  padding: 34px 18px 34px;
  overflow: hidden;
  border: 1px solid rgba(35, 92, 56, 0.1);
  border-radius: var(--radius);
  color: #020502;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 248, 241, 0.76)),
    #f2f3ef;
  box-shadow: 0 12px 30px rgba(27, 52, 32, 0.05);
  text-align: center;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.featured-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(98, 170, 31, 0.13), transparent 48%),
    linear-gradient(315deg, rgba(166, 111, 30, 0.11), transparent 44%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.featured-category-card:hover {
  border-color: rgba(98, 170, 31, 0.32);
  box-shadow: 0 22px 52px rgba(27, 52, 32, 0.12);
  transform: translateY(-5px);
}

.featured-category-card:hover::before {
  opacity: 1;
}

.featured-category-image {
  position: relative;
  z-index: 1;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  overflow: hidden;
  align-self: start;
  border-radius: 50%;
  border: 8px solid #fff;
  background: #fff;
  box-shadow:
    0 16px 32px rgba(27, 52, 32, 0.12),
    0 0 0 1px rgba(35, 92, 56, 0.08);
}

.featured-category-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    filter 240ms ease,
    transform 320ms ease;
}

.featured-category-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.12);
}

.featured-category-card > span:last-child {
  position: relative;
  z-index: 1;
  max-width: 150px;
  margin-top: 30px;
  color: #111c14;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.2;
}

.why-choose {
  padding: clamp(38px, 5vw, 64px) clamp(20px, 5vw, 72px)
    clamp(70px, 8vw, 110px);
  background: transparent;
}

.why-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.why-heading h2 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
}

.why-heading h2 span {
  color: #62aa1f;
}

.why-heading::after {
  content: '';
  display: block;
  width: 240px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, rgba(35, 92, 56, 0.18), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  max-width: 1180px;
  margin: 0 auto;
}

.why-card {
  --card-accent: #62aa1f;
  --card-soft: rgba(98, 170, 31, 0.12);
  --card-glow: rgba(98, 170, 31, 0.18);
  min-height: 210px;
  padding: 28px 38px;
  border: 1px solid rgba(35, 92, 56, 0.12);
  border-top: 4px solid var(--card-accent);
  background:
    radial-gradient(circle at 88% 18%, var(--card-glow), transparent 13rem),
    radial-gradient(circle at 15% 82%, var(--card-soft), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, var(--card-soft) 100%);
  box-shadow: 0 12px 34px rgba(27, 52, 32, 0.05);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.why-card:nth-child(2) {
  --card-accent: #a66f1e;
  --card-soft: rgba(166, 111, 30, 0.13);
  --card-glow: rgba(166, 111, 30, 0.2);
}

.why-card:nth-child(3) {
  --card-accent: #277c62;
  --card-soft: rgba(39, 124, 98, 0.12);
  --card-glow: rgba(39, 124, 98, 0.18);
}

.why-card:nth-child(4) {
  --card-accent: #d08b24;
  --card-soft: rgba(208, 139, 36, 0.13);
  --card-glow: rgba(208, 139, 36, 0.2);
}

.why-card:nth-child(5) {
  --card-accent: #3f7fca;
  --card-soft: rgba(63, 127, 202, 0.12);
  --card-glow: rgba(63, 127, 202, 0.18);
}

.why-card:nth-child(6) {
  --card-accent: #8a8f23;
  --card-soft: rgba(138, 143, 35, 0.13);
  --card-glow: rgba(138, 143, 35, 0.2);
}

.why-card:hover {
  border-color: rgba(35, 92, 56, 0.18);
  box-shadow: 0 22px 54px rgba(27, 52, 32, 0.11);
  transform: translateY(-4px);
}

.why-card h3 {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(35, 92, 56, 0.12);
  color: #071b10;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 900;
}

.why-card-body {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
}

.why-card-body span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 42%, white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 40%),
    var(--card-soft);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.58);
}

.why-card-body svg {
  display: block;
  width: 42px;
  height: 42px;
}

.why-card-body p {
  margin: 0;
  color: #7a817c;
  font-size: 0.98rem;
  line-height: 1.65;
}

.partner-strip {
  padding: clamp(32px, 5vw, 72px) clamp(20px, 5vw, 72px)
    clamp(56px, 7vw, 96px);
}

.partner-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.partner-heading h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
}

.partner-marquee {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(2px, 0.35vw, 6px);
  animation: partnerLogoScroll 26s linear infinite;
}

.partner-logo-card {
  display: grid;
  width: clamp(190px, 16vw, 240px);
  height: 155px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition:
    transform 220ms ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
}

.partner-logo-card img {
  display: block;
  width: 200px;
  height: 120px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.partner-logo-card:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}

.page-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-page {
  min-height: calc(100svh - 210px);
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 111, 30, 0.1), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, #f4f8ee 100%);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-feature-grid .intro-feature {
  padding: 28px;
  border: 1px solid rgba(35, 92, 56, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(27, 52, 32, 0.07);
}

.services-section {
  position: relative;
  padding-top: clamp(62px, 8vw, 104px);
  background:
    radial-gradient(circle at 82% 12%, rgba(246, 196, 83, 0.13), transparent 18rem),
    linear-gradient(180deg, #fffdf8 0%, #f3f7ee 100%);
}

.services-section .section-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  perspective: 1400px;
}

.service-tile {
  min-height: 210px;
  overflow: hidden;
  background: #fff;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease;
}

.service-tile:hover {
  box-shadow: 0 30px 70px rgba(27, 52, 32, 0.14);
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
}

.text-tile {
  display: flex;
  align-items: stretch;
  padding: clamp(18px, 2vw, 26px);
  background:
    radial-gradient(circle at 18% 16%, rgba(246, 207, 47, 0.22), transparent 9rem),
    linear-gradient(145deg, #f7fff0 0%, #dcefd3 52%, #b9dca9 100%);
}

.image-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition:
    filter 320ms ease,
    transform 420ms ease;
}

.image-tile:hover img {
  filter: saturate(1.14) contrast(1.04);
  transform: scale(1.07);
}

.service-tile-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.service-tile-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #f6cf2f 0 34%, #8ec06f 35% 100%);
  box-shadow: 0 18px 34px rgba(35, 92, 56, 0.18);
}

.service-tile-icon::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid var(--leaf);
  border-top-color: transparent;
  border-radius: 50%;
}

.service-number {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-tile h3 {
  max-width: 310px;
  margin-bottom: 18px;
  color: #050805;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
  font-weight: 800;
  line-height: 1.18;
}

.service-tile p:not(.service-number) {
  max-width: 320px;
  color: #788079;
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-tile a {
  display: inline-flex;
  margin-top: 12px;
  color: #050805;
  font-weight: 900;
  text-decoration: none;
}

.service-grid,
.crop-grid,
.operation-layout,
.impact-strip {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  perspective: 1200px;
}

.service-card,
.crop-card,
.operation-detail,
.stat.compact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(27, 52, 32, 0.06);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 238, 0.92)),
    #fff;
  transform-style: preserve-3d;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(35, 92, 56, 0.1), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(246, 196, 83, 0.18), transparent 9rem);
  opacity: 0;
  transition: opacity 320ms ease;
}

.service-card::after {
  content: '';
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(35, 92, 56, 0.1);
  border-radius: 50%;
  background: rgba(35, 92, 56, 0.035);
  transition: transform 320ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(35, 92, 56, 0.28);
  box-shadow: 0 26px 70px rgba(27, 52, 32, 0.16);
  transform: translateY(-10px) rotateX(5deg) rotateY(-4deg) scale(1.015);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-within::after {
  transform: translateZ(34px) scale(1.12);
}

.crop-card:hover,
.stat.compact:hover {
  border-color: #b8c9b0;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 38%, #f6c453 0 14%, transparent 15%),
    linear-gradient(135deg, transparent 48%, var(--leaf) 49% 55%, transparent 56%),
    #dce8c6;
  box-shadow: 0 14px 30px rgba(35, 92, 56, 0.16);
  transform: translateZ(28px);
  transition: transform 320ms ease;
}

.service-media {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 320ms ease,
    transform 420ms ease;
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(18, 52, 31, 0.64));
}

.service-media .service-icon {
  position: absolute;
  right: 22px;
  bottom: -26px;
  z-index: 2;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateZ(48px) rotate(-8deg);
}

.service-card:hover .service-media img,
.service-card:focus-within .service-media img {
  filter: saturate(1.18) contrast(1.04);
  transform: scale(1.08);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
  transform: translateZ(20px);
}

.service-body {
  position: relative;
  z-index: 1;
  padding: 40px 28px 28px;
}

.service-card p,
.crop-card p,
.operation-detail li,
.program-band p,
.contact p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.impact-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--leaf-soft);
}

.operation-band {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(35, 92, 56, 0.1), transparent 20rem),
    radial-gradient(circle at 90% 75%, rgba(166, 111, 30, 0.1), transparent 24rem),
    linear-gradient(180deg, #f9f5ea, #f5f1e5);
}

.operation-band .section-heading {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.operation-layout {
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(35, 92, 56, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 26px 70px rgba(27, 52, 32, 0.1);
  backdrop-filter: blur(10px);
}

.operation-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.operation-tabs button,
.filter-buttons button {
  border: 1px solid #cfd9c5;
  border-radius: 999px;
  color: #263f2d;
  background: var(--surface);
  font-size: 0.84rem;
  font-weight: 800;
}

.operation-tabs button {
  position: relative;
  min-height: 56px;
  padding: 13px 18px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(27, 52, 32, 0.04);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.operation-tabs button:hover {
  border-color: rgba(35, 92, 56, 0.32);
  box-shadow: 0 14px 30px rgba(27, 52, 32, 0.08);
  transform: translateX(3px);
}

.operation-tabs button.active,
.filter-buttons button.active {
  color: var(--paper);
  background: var(--leaf);
  border-color: var(--leaf);
}

.operation-detail {
  min-height: 360px;
  padding: clamp(30px, 5vw, 56px);
  border-color: rgba(35, 92, 56, 0.12);
  background:
    radial-gradient(circle at 95% 8%, rgba(246, 207, 47, 0.12), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 243, 0.96));
  box-shadow: 0 18px 48px rgba(27, 52, 32, 0.08);
  animation: tiltIn 560ms ease both;
}

.operation-detail h3 {
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.operation-detail ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.operation-detail li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(35, 92, 56, 0.12);
}

.operation-detail li:first-child {
  border-top: 0;
  padding-top: 0;
}

.operation-detail li span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--leaf-dark);
  background: #f2dfad;
  font-size: 0.76rem;
  font-weight: 900;
}

.operation-detail li p {
  margin: 0;
}

.impact {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 111, 30, 0.1), transparent 24rem),
    var(--paper);
}

.impact .section-heading {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.products-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(166, 111, 30, 0.12), transparent 18rem),
    linear-gradient(180deg, #fffdf8 0%, #f7fbf1 100%);
}

.product-heading {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.product-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 345px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 92, 56, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(27, 52, 32, 0.06);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  border-color: rgba(166, 111, 30, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(35, 92, 56, 0.14), rgba(166, 111, 30, 0.14)),
    var(--leaf-soft);
}

.product-media::before {
  content: attr(data-label);
  padding: 0 22px;
  color: var(--leaf-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.product-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--leaf-soft);
  transition:
    filter 280ms ease,
    transform 360ms ease;
}

.product-card:hover img {
  filter: saturate(1.12) contrast(1.03);
  transform: scale(1.04);
}

.product-card-body {
  display: grid;
  align-content: start;
  padding: 20px;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: #f2dfad;
  font-size: 0.67rem;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.featured-product-details {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  width: 100%;
  max-width: 1220px;
  margin: clamp(36px, 5vw, 64px) auto 0;
}

.featured-product-detail {
  position: relative;
  scroll-margin-top: 116px;
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(18px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(35, 92, 56, 0.1);
  border-radius: 0 42px 0 42px;
  background:
    linear-gradient(105deg, rgba(244, 249, 239, 0.96) 0 36%, rgba(255, 253, 248, 0.96) 36% 100%),
    #fffdf8;
  box-shadow: 0 22px 60px rgba(27, 52, 32, 0.09);
}

.featured-product-detail:target {
  border-color: rgba(166, 111, 30, 0.38);
  box-shadow: 0 26px 72px rgba(27, 52, 32, 0.14);
}

.featured-product-media {
  position: relative;
  aspect-ratio: 5 / 4;
  align-self: start;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 0 34px 0 34px;
  background: var(--leaf-soft);
  box-shadow:
    0 22px 50px rgba(27, 52, 32, 0.16),
    0 0 0 1px rgba(35, 92, 56, 0.08);
}

.featured-product-media::after {
  content: 'Northeast produce';
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 24px rgba(27, 52, 32, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.featured-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.featured-product-copy {
  display: grid;
  align-content: start;
  padding: clamp(4px, 1vw, 12px) 0;
}

.featured-product-copy h2 {
  margin-bottom: 14px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
}

.featured-product-overview {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.75;
}

.featured-product-importance {
  padding: 20px 22px;
  border-left: 5px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(90deg, rgba(242, 223, 173, 0.42), rgba(255, 253, 248, 0.78));
}

.featured-product-importance h3,
.featured-product-lists h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.featured-product-importance p {
  margin: 0;
  color: #526257;
  font-size: 0.92rem;
  line-height: 1.7;
}

.featured-product-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.featured-product-lists div {
  padding: 20px 0 0;
  border-top: 1px solid rgba(35, 92, 56, 0.16);
  background: transparent;
}

.featured-product-lists ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-product-lists li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.featured-product-lists li::before {
  content: '';
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62aa1f;
  transform: translateY(-50%);
}

.featured-product-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid rgba(35, 92, 56, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: var(--leaf);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.featured-product-back:hover {
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
}

.products-section:has(.product-story) {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(180deg, #fff 0%, #fffdf8 100%);
}

.product-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.product-story-copy {
  position: relative;
  z-index: 1;
}

.product-story-copy::after {
  content: '';
  position: absolute;
  right: clamp(28px, 6vw, 88px);
  bottom: 2px;
  width: 84px;
  height: 42px;
  border-bottom: 3px solid rgba(18, 52, 31, 0.72);
  border-left: 3px solid rgba(18, 52, 31, 0.72);
  border-radius: 0 0 0 70px;
  transform: rotate(-25deg);
}

.product-story-kicker {
  display: inline-grid;
  grid-template-columns: 24px auto;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
  color: #526257;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-story-kicker span {
  position: relative;
  width: 22px;
  height: 22px;
}

.product-story-kicker span::before,
.product-story-kicker span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 9px;
  height: 16px;
  border-radius: 9px 9px 2px 9px;
  background: #78a33d;
  transform-origin: bottom center;
}

.product-story-kicker span::before {
  left: 4px;
  transform: rotate(-34deg);
}

.product-story-kicker span::after {
  right: 2px;
  background: #f0c74d;
  transform: rotate(28deg);
}

.product-story h1 {
  max-width: 560px;
  margin: 0 0 24px;
  color: #233f34;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  line-height: 1.12;
  font-weight: 900;
}

.product-story h2 {
  margin: 0 0 30px;
  color: #6f9639;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.35;
  font-weight: 900;
}

.product-story-copy > p:not(.product-story-kicker) {
  max-width: 560px;
  margin: 0;
  color: #617166;
  font-size: 1rem;
  line-height: 1.9;
}

.product-story-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  max-width: 560px;
  margin: 40px 0 0;
}

.product-story-features article {
  min-height: 178px;
}

.product-story-features article + article {
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 1px solid rgba(35, 92, 56, 0.15);
}

.product-story-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: #f0bd38;
}

.product-story-icon svg {
  width: 38px;
  height: 38px;
}

.product-story-features h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.product-story-features p {
  margin: 0;
  color: #617166;
  font-size: 0.92rem;
  line-height: 1.8;
}

.product-story-details {
  display: grid;
  gap: 18px;
  max-width: 650px;
  margin-top: 28px;
}

.product-story-importance {
  padding: 20px 22px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, rgba(242, 223, 173, 0.46), rgba(255, 253, 248, 0.72));
}

.product-story-importance h3,
.product-story-lists h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.product-story-importance p {
  margin: 0;
  color: #526257;
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-story-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-story-lists article {
  padding-top: 18px;
  border-top: 1px solid rgba(35, 92, 56, 0.16);
}

.product-story-lists ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-story-lists li {
  position: relative;
  padding-left: 18px;
  color: #617166;
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-story-lists li::before {
  content: '';
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62aa1f;
  transform: translateY(-50%);
}

.product-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
}

.product-story-button,
.product-story-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-story-button {
  min-width: 216px;
  padding: 0 28px;
  color: #183821;
  background: #f4cd61;
  box-shadow: inset -8px 0 rgba(166, 111, 30, 0.18);
}

.product-story-back {
  min-width: 154px;
  padding: 0 18px;
  color: var(--leaf);
  border: 1px solid rgba(35, 92, 56, 0.18);
}

.product-story-button:hover {
  background: #edbf43;
}

.product-story-back:hover {
  color: #fff;
  background: var(--leaf);
}

.product-story-media {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  margin: 0;
}

.product-story-media::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: 0;
  z-index: 0;
  width: 58%;
  height: 48%;
  border-radius: var(--radius);
  background: #f4cd61;
}

.product-story-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 54px rgba(27, 52, 32, 0.13);
}

.impact-dashboard {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 24px;
  color: #fffdf8;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 223, 173, 0.18), transparent 18rem),
    linear-gradient(135deg, #12341f 0%, #235c38 58%, #184629 100%);
  box-shadow: 0 34px 90px rgba(18, 52, 31, 0.22);
}

.impact-summary-card {
  display: grid;
  align-content: center;
  min-height: 440px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 18px;
  background:
    linear-gradient(rgba(9, 32, 17, 0.38), rgba(9, 32, 17, 0.72)),
    url('https://images.unsplash.com/photo-1583506522440-b2639ef4c1d8?auto=format&fit=crop&w=900&q=82') center / cover;
  overflow: hidden;
}

.impact-summary-card span {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #12341f;
  background: #f2dfad;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.impact-summary-card h3 {
  max-width: 390px;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.12;
}

.impact-summary-card p {
  max-width: 390px;
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.impact-metric {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    background 240ms ease,
    transform 240ms ease,
    border-color 240ms ease;
}

.impact-metric::after {
  content: '';
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(242, 223, 173, 0.1);
}

.impact-metric:hover {
  border-color: rgba(242, 223, 173, 0.45);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.impact-metric span {
  position: relative;
  z-index: 1;
  color: rgba(242, 223, 173, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.impact-metric strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 38px;
  color: #f2dfad;
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1;
}

.impact-metric p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.crop-section {
  background:
    linear-gradient(180deg, var(--leaf-soft), #f4f8ee);
}

.filters {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.filter-buttons {
  gap: 10px;
  flex-wrap: wrap;
}

.filter-buttons button {
  min-height: 40px;
  padding: 9px 13px;
}

.crop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crop-card {
  min-height: 260px;
  padding: 24px;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.crop-card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: #dce8c6;
  font-size: 0.67rem;
  font-weight: 800;
}

.crop-card .region {
  color: var(--gold);
  font-weight: 800;
}

.empty-state {
  margin: 18px 0 0;
  color: var(--muted);
}

.program-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.program-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-band li {
  padding: 16px 18px;
  border-left: 4px solid var(--leaf);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--leaf-soft);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.program-band li:hover {
  box-shadow: 0 14px 28px rgba(27, 52, 32, 0.1);
  transform: translateX(6px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.66fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(246, 196, 83, 0.08), transparent 30%),
    var(--leaf-dark);
}

.contact h2,
.contact p,
.contact dd {
  color: var(--paper);
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 0;
}

.details-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.details-list dt {
  margin-bottom: 6px;
  color: #dce8c6;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

label {
  display: grid;
  gap: 8px;
  color: #dce8c6;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(20, 50, 28, 0.18);
  border-radius: var(--radius);
  padding: 13px 15px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  font-size: 0.9rem;
}

.contact input,
.contact textarea {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

::placeholder {
  color: rgba(20, 38, 26, 0.48);
}

.contact ::placeholder {
  color: rgba(255, 253, 248, 0.56);
}

.form-status {
  margin: 0;
  padding: 13px 15px;
  border-radius: var(--radius);
  background: rgba(220, 232, 198, 0.14);
}

.site-footer {
  position: relative;
  isolation: isolate;
  display: block;
  margin-top: clamp(72px, 8vw, 120px);
  padding: clamp(150px, 13vw, 190px) clamp(20px, 5vw, 72px) 0;
  color: #fffdf8;
  background:
    linear-gradient(rgba(7, 24, 12, 0.78), rgba(7, 24, 12, 0.82)),
    url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?auto=format&fit=crop&w=2200&q=80') center / cover;
}

.footer-cta {
  position: absolute;
  top: 52px;
  right: clamp(20px, 8vw, 140px);
  left: clamp(20px, 8vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(32px, 4vw, 58px) clamp(28px, 5vw, 72px);
  border-radius: 86px 0 86px 0;
  background:
    linear-gradient(135deg, #2a9638 0%, #238b31 58%, #1f7f2c 100%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.16), transparent 12rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-100%);
}

.footer-cta h2 {
  max-width: 660px;
  color: #fff;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 900;
  line-height: 1.25;
}

.footer-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  padding: 0 26px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.footer-cta-actions a:first-child {
  color: #071b10;
  background: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(160px, 0.8fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: clamp(42px, 6vw, 78px);
}

.footer-column h3 {
  display: inline-block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-column p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-about p {
  max-width: 310px;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  color: #f2dfad;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.back-to-top {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  bottom: 58px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--leaf);
  background: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom a {
  color: #f2dfad;
  text-decoration: none;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextBlurIn {
  from {
    filter: blur(14px);
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutTextSlideIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes partnerLogoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 3));
  }
}

@keyframes tiltIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1080px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    grid-template-columns: auto 1fr;
    min-height: 84px;
  }

  .nav-tools {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 0 16px;
    border-left: 0;
  }

  nav {
    justify-content: flex-end;
    padding-right: 0;
  }

  .crop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .program-band,
  .contact,
  .operation-layout,
  .filters,
  .home-about,
  .footer-cta,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .home-about {
    padding-top: clamp(72px, 9vw, 104px);
  }

  .main-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  nav {
    justify-content: flex-start;
    padding: 0;
  }

  .hero-slider,
  .hero-overlay {
    min-height: 680px;
  }

  .service-grid,
  .service-mosaic,
  .impact-strip {
    grid-template-columns: 1fr;
  }

  .impact-dashboard,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .featured-product-detail {
    grid-template-columns: 1fr;
    border-radius: 0 32px 0 32px;
  }

  .product-story {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-story-media {
    order: -1;
    min-height: clamp(300px, 58vw, 460px);
  }

  .product-story-media img {
    height: clamp(300px, 58vw, 460px);
  }

  .featured-product-media {
    aspect-ratio: 16 / 9;
    border-width: 8px;
  }

  .featured-product-media img {
    min-height: 0;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .featured-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-feature-panel {
    grid-template-columns: 1fr;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -54px 20px 0;
    box-shadow:
      0 26px 70px rgba(18, 52, 31, 0.2),
      0 8px 22px rgba(18, 52, 31, 0.12);
  }

  .operation-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operation-tabs button {
    text-align: center;
  }

  .home-about-media {
    order: -1;
  }

  .site-footer {
    padding-top: 220px;
  }

  .footer-cta {
    border-radius: 42px 0 42px 0;
    text-align: center;
  }

  .footer-cta h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .main-nav {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-wrap {
    width: 190px;
    height: 68px;
  }

  nav {
    width: 100%;
    gap: 12px;
  }

  nav a {
    font-size: 0.84rem;
  }

  .nav-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .menu-button {
    position: absolute;
    top: 26px;
    right: 16px;
  }

  .service-grid,
  .service-mosaic,
  .impact-strip,
  .product-grid,
  .product-story-features,
  .product-story-lists,
  .featured-product-lists,
  .featured-category-grid,
  .why-grid,
  .crop-grid,
  .program-band ul,
  .operation-tabs,
  .details-list {
    grid-template-columns: 1fr;
  }

  .hero-slider,
  .hero-overlay {
    min-height: 720px;
  }

  .hero-proof span,
  .primary-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  form {
    padding: 18px;
  }

  .home-about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-about-call {
    justify-content: center;
  }

  .home-about-media img {
    min-height: 260px;
  }

  .product-story {
    width: min(100% - 28px, 520px);
  }

  .product-story h1 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

  .product-story h2 {
    margin-bottom: 22px;
  }

  .product-story-copy > p:not(.product-story-kicker) {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .product-story-copy::after {
    display: none;
  }

  .product-story-features {
    gap: 20px;
    margin-top: 30px;
  }

  .product-story-features article {
    min-height: auto;
  }

  .product-story-features article + article {
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(35, 92, 56, 0.15);
    border-left: 0;
  }

  .product-story-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-story-button,
  .product-story-back {
    width: 100%;
    min-height: 58px;
  }

  .product-story-media,
  .product-story-media img {
    min-height: 0;
    height: 315px;
  }

  .product-story-media::after {
    right: -10px;
  }

  .site-footer {
    padding-top: 260px;
  }

  .footer-cta-actions a,
  .footer-social,
  .footer-column h3 {
    width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .back-to-top {
    right: 18px;
    bottom: 72px;
  }
}

/* Visual refinement layer */
.site-header {
  border-bottom: 1px solid rgba(20, 38, 26, 0.08);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 28px rgba(18, 52, 31, 0.08);
}

.top-bar {
  min-height: 44px;
  background: linear-gradient(90deg, #12341f, #235c38 62%, #6f4b18);
}

.top-bar-items {
  min-height: 44px;
}

.top-bar-items span {
  gap: 9px;
  padding: 0 clamp(14px, 2vw, 24px);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.top-bar-items b {
  display: inline-grid;
  min-width: 30px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #17341d;
  background: #f2dfad;
  font-size: 0.63rem;
  font-weight: 900;
}

.top-social a {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 50%;
  font-size: 0.72rem;
}

.main-nav {
  min-height: 82px;
  background: rgba(255, 253, 248, 0.86);
}

.brand-logo-wrap {
  width: clamp(174px, 18vw, 232px);
  height: 72px;
}

nav {
  gap: clamp(8px, 1.2vw, 18px);
}

nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: var(--radius);
}

nav a::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

nav a:hover,
nav a[aria-current='page'] {
  background: rgba(35, 92, 56, 0.08);
}

nav a:hover::after,
nav a[aria-current='page']::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-tools {
  min-height: 82px;
  gap: 14px;
}

.nav-action,
.primary-button,
.secondary-button,
form button,
.footer-cta-actions a {
  border-radius: var(--radius);
}

.nav-action,
.primary-button,
form button {
  background: linear-gradient(135deg, #235c38, #277c62);
  box-shadow: 0 14px 28px rgba(35, 92, 56, 0.18);
}

.nav-action:hover,
.primary-button:hover,
form button:hover {
  background: linear-gradient(135deg, #1a4b2d, #216b54);
}

.menu-button {
  display: none;
}

.hero-slider {
  min-height: calc(100svh - 126px);
}

.hero-slider::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 12, 0.88) 0%, rgba(13, 45, 25, 0.68) 45%, rgba(13, 45, 25, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 22, 12, 0.16) 0%, rgba(6, 22, 12, 0.52) 100%);
}

.hero-overlay {
  align-items: center;
  min-height: calc(100svh - 126px);
  padding-top: clamp(34px, 5vw, 72px);
}

.hero-copy {
  max-width: 1040px;
}

.slide-label,
.hero-proof span {
  border-radius: var(--radius);
}

.hero-proof span {
  min-width: 146px;
  padding: 14px 16px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
}

.hero-feature-panel {
  bottom: -118px;
  gap: clamp(18px, 3vw, 36px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
}

.home-about {
  padding-top: clamp(172px, 15vw, 220px);
}

.home-about-media,
.product-card,
.service-tile,
.crop-card,
.operation-detail,
.impact-dashboard,
.impact-summary-card,
.impact-metric,
form {
  border-radius: var(--radius);
}

.featured-categories::before,
.impact-metric::after {
  display: none;
}

.featured-category-grid {
  gap: clamp(14px, 1.5vw, 20px);
}

.featured-category-card {
  min-height: 224px;
  padding: 26px 16px;
}

.why-card {
  min-height: 0;
  padding: 26px;
  border-radius: var(--radius);
}

.why-card-body {
  grid-template-columns: 58px 1fr;
}

.why-card-body span {
  width: 58px;
  height: 58px;
}

.why-card-body svg {
  width: 32px;
  height: 32px;
}

.partner-strip {
  background: linear-gradient(180deg, #fbfdf7 0%, #fffdf8 100%);
}

.partner-marquee {
  padding: 16px 0;
}

.partner-marquee-track {
  gap: 18px;
}

.partner-logo-card {
  width: clamp(170px, 15vw, 220px);
  height: 120px;
  padding: 18px;
  border: 1px solid rgba(35, 92, 56, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.partner-logo-card img {
  width: 100%;
  height: 86px;
}

.service-mosaic {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  perspective: none;
}

.service-tile {
  border: 1px solid rgba(35, 92, 56, 0.12);
  box-shadow: 0 14px 34px rgba(27, 52, 32, 0.06);
}

.service-tile:hover {
  box-shadow: 0 22px 54px rgba(27, 52, 32, 0.12);
  transform: translateY(-4px);
}

.text-tile {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 240, 227, 0.92)),
    #fff;
}

.service-tile-icon {
  border-radius: var(--radius);
  background: #f2dfad;
  box-shadow: none;
}

.operation-layout {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.operation-tabs {
  border-radius: var(--radius);
}

.operation-tabs button,
.filter-buttons button {
  border-radius: var(--radius);
}

.impact-dashboard {
  grid-template-columns: minmax(360px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(35, 92, 56, 0.1);
  background:
    linear-gradient(135deg, #12341f 0%, #235c38 58%, #315f66 100%);
}

.impact-summary-card {
  min-height: 440px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(90deg, rgba(8, 26, 14, 0.74), rgba(8, 26, 14, 0.42)),
    url('https://images.unsplash.com/photo-1583506522440-b2639ef4c1d8?auto=format&fit=crop&w=900&q=82') center / cover;
}

.impact-summary-card h3 {
  max-width: 300px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.impact-summary-card p {
  max-width: 310px;
  font-size: 0.94rem;
}

.impact-metrics {
  gap: 14px;
}

.impact-metric {
  min-height: 208px;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
}

.impact-metric span {
  color: rgba(242, 223, 173, 0.92);
}

.impact-metric strong {
  margin-top: 30px;
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
  letter-spacing: 0;
}

.impact-metric p {
  max-width: 220px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact {
  background:
    linear-gradient(135deg, rgba(63, 111, 126, 0.28), transparent 36%),
    linear-gradient(180deg, #12341f, #0d2416);
}

.site-footer {
  margin-top: clamp(64px, 7vw, 96px);
}

.footer-cta {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #235c38 0%, #277c62 62%, #6f4b18 100%);
}

.footer-column h3 {
  text-decoration: none;
}

.footer-column h3::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: #f2dfad;
}

@media (max-width: 1080px) {
  .top-bar {
    display: flex;
    overflow-x: auto;
  }

  .top-social {
    display: none;
  }
}

@media (max-width: 920px) {
  .main-nav {
    grid-template-columns: auto 1fr;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 0;
  }

  .nav-tools {
    grid-column: auto;
    justify-content: flex-end;
    padding: 0;
  }

  .hero-feature-panel {
    margin-top: -36px;
  }

  .home-about {
    padding-top: clamp(62px, 8vw, 92px);
  }

  .footer-cta {
    border-radius: var(--radius);
  }
}

@media (max-width: 620px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .brand-logo-wrap {
    width: 172px;
    height: 62px;
  }

  nav {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    flex: 0 0 auto;
    font-size: 0.8rem;
  }

  .nav-tools {
    align-items: stretch;
  }

  .hero-slider,
  .hero-overlay {
    min-height: 700px;
  }

  .hero-overlay {
    padding-bottom: 118px;
  }

  .hero-feature-panel {
    padding: 22px;
  }

  .intro-feature {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro-feature-icon {
    width: 56px;
    height: 56px;
  }

  .featured-category-card {
    min-height: 204px;
  }

  .why-card,
  .crop-card,
  .product-card-body,
  .operation-detail {
    padding: 20px;
  }

  .why-card-body {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 240px;
  }
}

/* Outcome dashboard: editorial bento treatment */
.impact {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(217, 181, 91, 0.14), transparent 22rem),
    linear-gradient(180deg, #fbfaf5 0%, #f2f5ed 100%);
}

.impact .section-heading {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.impact-dashboard {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(14px, 1.6vw, 24px);
  max-width: 1400px;
  padding: clamp(14px, 1.6vw, 24px);
  border: 1px solid rgba(28, 75, 48, 0.13);
  border-radius: 30px;
  color: #183d29;
  background: #e7edde;
  box-shadow: 0 28px 70px rgba(18, 52, 31, 0.12);
}

.impact-summary-card {
  position: relative;
  align-content: end;
  min-height: 570px;
  padding: clamp(28px, 3.5vw, 52px);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(9, 30, 17, 0.08) 5%, rgba(9, 30, 17, 0.9) 100%),
    url('https://images.unsplash.com/photo-1583506522440-b2639ef4c1d8?auto=format&fit=crop&w=900&q=82') center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.impact-summary-card span {
  margin-bottom: 22px;
  padding: 9px 14px;
  color: #173e29;
  background: #f4dfa4;
}

.impact-summary-card h3 {
  max-width: 420px;
  color: #fffdf8;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.04;
  text-wrap: balance;
}

.impact-summary-card p {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.impact-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 18px);
}

.impact-metric {
  min-width: 0;
  min-height: 0;
  padding: clamp(22px, 2.2vw, 34px);
  border: 1px solid rgba(28, 75, 48, 0.12);
  border-radius: 20px;
  color: #173e29;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.impact-metric:nth-child(3n + 2) {
  background: #dce8d4;
}

.impact-metric:nth-child(3n) {
  background: #f3e7c7;
}

.impact-metric:hover {
  border-color: rgba(28, 75, 48, 0.28);
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 52, 31, 0.1);
  transform: translateY(-4px);
}

.impact-metric span {
  color: #8b691b;
  font-size: 0.72rem;
}

.impact-metric strong {
  max-width: 100%;
  margin-top: clamp(20px, 2.5vw, 36px);
  color: #1c5738;
  font-size: clamp(2.4rem, 4.3vw, 4.65rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.impact-metric p {
  max-width: 260px;
  margin-top: 18px;
  color: #3d5949;
  font-size: clamp(0.84rem, 1vw, 0.96rem);
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .impact-dashboard {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .impact-summary-card {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .impact-dashboard {
    grid-template-columns: 1fr;
  }

  .impact-summary-card {
    min-height: 460px;
  }
}

@media (max-width: 520px) {
  .impact-dashboard {
    padding: 10px;
    border-radius: 22px;
  }

  .impact-summary-card {
    min-height: 430px;
    border-radius: 16px;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-metric {
    min-height: 190px;
    border-radius: 16px;
  }
}
