:root {
  --green-900: #123f2b;
  --green-800: #1f5a39;
  --green-700: #23784a;
  --green-500: #4caf50;
  --leaf: #8ac640;
  --cream: #f7f4ea;
  --soil: #84623f;
  --ink: #17251d;
  --muted: #647168;
  --line: rgba(30, 90, 57, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 63, 43, 0.12);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(18, 63, 43, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 54px;
  width: 176px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  max-height: 52px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header.is-scrolled .main-nav,
.site-header.nav-open .main-nav {
  color: var(--green-900);
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 54px) clamp(18px, 5vw, 72px) 68px;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-900);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18vh;
  background: linear-gradient(180deg, transparent, rgba(18, 63, 43, 0.32));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0;
  animation: heroIn 900ms ease 120ms forwards;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 63, 43, 0.86) 0%, rgba(18, 63, 43, 0.68) 43%, rgba(18, 63, 43, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.05));
}

.hero-content {
  width: min(820px, 100%);
  color: var(--white);
  padding-top: 18px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 5.7rem);
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-900);
  background: var(--leaf);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(56px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split,
.contact-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.section h2 {
  color: var(--green-900);
  font-size: clamp(1.85rem, 3.7vw, 3.15rem);
}

.section-copy p:not(.eyebrow),
.section-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.about {
  background: linear-gradient(180deg, var(--white), #fbfcf6);
}

.about-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(138, 198, 64, 0.14), rgba(132, 98, 63, 0.08)),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(35, 120, 74, 0.18);
  border-radius: 8px;
}

.about-logo {
  width: min(330px, 72%);
  mix-blend-mode: multiply;
}

.seed-panel {
  position: absolute;
  inset: auto 28px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.seed-panel span {
  min-width: 0;
  padding: 10px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.fields,
.process {
  background: var(--cream);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 850px;
  margin-bottom: 34px;
}

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

.field-card,
.contact-card,
.timeline {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(18, 63, 43, 0.07);
}

.field-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 120, 74, 0.34);
  box-shadow: var(--shadow);
}

.field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.field-card h3,
.product-card h3,
.timeline strong {
  margin: 0;
  color: var(--green-900);
  line-height: 1.25;
}

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

.product-heading {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-note {
  max-width: 320px;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  box-shadow: 0 10px 26px rgba(18, 63, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(35, 120, 74, 0.42);
  box-shadow: var(--shadow);
  outline: none;
}

.product-image {
  aspect-ratio: 4 / 5;
  background: #f8faf3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card:hover .product-image img,
.product-card:focus-visible .product-image img {
  transform: scale(1.045);
}

.product-card h3 {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.25;
  background: linear-gradient(180deg, #ffffff, #fbfcf7);
  overflow-wrap: anywhere;
  white-space: normal;
}

.process-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

.timeline {
  display: grid;
  padding: 14px;
  gap: 12px;
}

.timeline div {
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  border-left: 4px solid var(--leaf);
}

.timeline span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.export {
  background:
    linear-gradient(90deg, rgba(18, 63, 43, 0.05), transparent),
    #ffffff;
}

.global-mark {
  position: relative;
  min-height: 390px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 45%, rgba(138, 198, 64, 0.26), transparent 34%),
    linear-gradient(135deg, #f8fbf1, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit {
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(35, 120, 74, 0.26);
  border-radius: 50%;
}

.orbit-two {
  inset: 95px 34px;
  transform: rotate(-18deg);
}

.map-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-700), transparent);
}

.global-mark span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 800;
}

.global-mark span:nth-of-type(1) {
  left: 18%;
  top: 34%;
}

.global-mark span:nth-of-type(2) {
  right: 20%;
  top: 26%;
}

.global-mark span:nth-of-type(3) {
  left: 50%;
  bottom: 23%;
}

.contact {
  background: #fbfcf7;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.contact-card a,
.contact-card address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-style: normal;
}

.contact-card strong {
  color: var(--green-900);
}

.contact-card span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.map-section {
  width: 100%;
  margin-left: 0;
  height: 30vh;
  min-height: 260px;
  background: var(--cream);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-900);
  padding: 42px clamp(18px, 5vw, 72px) 22px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(140px, 0.7fr) minmax(180px, 0.8fr);
  gap: 30px;
}

.footer-brand img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  padding: 5px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--leaf);
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.fixed-actions {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 90;
  display: grid;
  gap: 10px;
}

.fixed-actions a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: transform 180ms ease, filter 180ms ease;
}

.fixed-actions a:hover,
.fixed-actions a:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.fixed-actions img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(9, 25, 16, 0.84);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-content {
  width: min(620px, 100%);
  max-height: 90svh;
  display: grid;
  gap: 12px;
}

.lightbox-content img {
  width: 100%;
  max-height: calc(90svh - 72px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.lightbox-content h2 {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--green-900);
  background: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    width: min(320px, calc(100vw - 36px));
    display: grid;
    gap: 0;
    padding: 8px;
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: #f2f7ec;
  }

  .main-nav a::after {
    display: none;
  }

  .split,
  .contact-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-note {
    max-width: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 63, 43, 0.9), rgba(18, 63, 43, 0.6));
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .brand {
    width: 132px;
    height: 48px;
  }

  .hero {
    min-height: 100svh;
    width: 100%;
    max-width: 100%;
    align-items: start;
    padding-inline: 18px;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 136px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.125rem, 8.6vw, 2.5rem);
  }

  .hero p:not(.eyebrow) {
    max-width: 31ch;
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-media {
    opacity: 0.82;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-inline: 18px;
  }

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

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-card {
    padding: 18px;
  }

  .product-image {
    aspect-ratio: 3 / 4;
  }

  .product-card h3 {
    min-height: 68px;
    padding: 10px;
    align-items: flex-start;
  }

  .about-visual,
  .global-mark {
    min-height: 320px;
  }

  .seed-panel {
    inset-inline: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .map-section {
    height: 66vw;
    min-height: 260px;
    max-height: 420px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .fixed-actions {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .fixed-actions a,
  .fixed-actions img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.125rem;
  }

  .product-card h3 {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
