:root {
  --green-950: #07160b;
  --green-900: #173f17;
  --green-800: #275b22;
  --green-700: #3f7431;
  --green-600: #5c8a3f;
  --ink: #101611;
  --muted: #485349;
  --soft: #fafbf7;
  --line: rgba(38, 85, 31, 0.13);
  --shadow: 0 18px 42px rgba(34, 64, 29, 0.1);
  --premium-shadow: 0 30px 78px rgba(26, 54, 28, 0.12);
  --grid-gap: 26px;
  --shell-max: 1680px;
  --content-max: 1600px;
  --body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --headline: "Songti SC", "STSong", "SimSun", "PingFang SC", serif;
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: #ffffff;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: #fdfdf9;
  font-family: var(--body);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

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

.shell {
  width: min(calc(100% - 96px), var(--shell-max));
  margin: 0 auto;
}

main > section:not(.hero) > .shell,
.site-footer > .shell {
  width: min(calc(100% - 96px), var(--content-max));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  border-bottom: 1px solid rgba(36, 76, 29, 0.06);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.header-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 248px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark {
  width: 62px;
  height: 44px;
}

.brand-mark img,
.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark img {
  max-width: 100%;
  transform: none;
}

.footer-mark img {
  max-width: 100%;
  transform: none;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text small {
  font-size: 10.5px;
  line-height: 1.2;
  color: #4b594d;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  color: #171d19;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 33px 0 30px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-700);
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 23px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #fbfcf8;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  background-image: url("./assets/site/hero-clean.png?v=module-images-1");
  background-position: center right;
  background-size: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(74, 123, 52, 0.08), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 22%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.28) 62%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(251, 252, 248, 0.22) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 620px;
}

.hero-copy {
  width: 500px;
  padding-top: 104px;
}

.hero-kicker,
.eyebrow {
  margin: 0;
  color: var(--green-800);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.hero h1,
.about-copy h2,
.product-feature h2,
.section-heading h2,
.quality-band h2,
.cta-copy strong {
  margin: 0;
  color: #101511;
  font-family: var(--headline);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 18px;
  width: 500px;
  font-size: 54px;
  line-height: 1.18;
}

.hero-copy > p:not(.hero-kicker) {
  width: 460px;
  margin: 24px 0 30px;
  color: #303b33;
  font-size: 14px;
  line-height: 1.9;
}

.primary-button,
.secondary-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #3d762e 0%, #285e23 100%);
  box-shadow: 0 10px 22px rgba(35, 88, 31, 0.18);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-button {
  min-width: 136px;
  height: 42px;
  padding: 0 21px;
}

.primary-button:hover,
.secondary-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(35, 88, 31, 0.24);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 46px;
}

.trust-row article {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trust-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.trust-row span {
  display: block;
  color: #39443b;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
  white-space: nowrap;
}

.stats-section {
  padding: 54px 0 78px;
  background: #fdfdf9;
}

.stats-band {
  height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(36, 76, 29, 0.08);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 139, 62, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #faf9f2 100%);
  box-shadow: 0 18px 42px rgba(34, 64, 29, 0.07);
}

.stats-band article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.stats-band article + article {
  border-left: 1px solid rgba(36, 76, 29, 0.12);
}

.stats-band strong {
  display: block;
  color: var(--green-800);
  font-family: var(--headline);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.stats-band strong span {
  margin-left: 2px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
}

.stats-band p {
  margin: 0;
  color: #404b42;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
}

.about-section {
  padding: 0 0 118px;
  background: #fdfdf9;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 92px;
  align-items: center;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: visible;
}

.about-photo > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.quote-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: auto;
  min-height: 0;
  margin: 0;
  display: grid;
  align-content: center;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #1c261e;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(22, 45, 25, 0.15);
  backdrop-filter: blur(14px);
}

.quote-card p {
  margin: 0;
  color: #263129;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}

.quote-card span {
  display: none;
}

.about-copy {
  min-width: 0;
  padding-top: 0;
}

.eyebrow {
  position: relative;
  width: fit-content;
  margin-bottom: 16px;
}

.about-copy h2 {
  width: min(100%, 620px);
  font-size: 46px;
  line-height: 1.32;
}

.about-body {
  width: min(100%, 600px);
  margin: 30px 0 0;
  color: #333e36;
  font-size: 14px;
  line-height: 1.9;
}

.about-body + .about-body {
  margin-top: 14px;
}

.secondary-button {
  height: 36px;
  min-width: 142px;
  margin-top: 32px;
  padding: 0 18px;
  font-size: 11px;
}

.product-section {
  padding: 104px 0 112px;
  border-top: 1px solid rgba(36, 76, 29, 0.06);
  border-bottom: 1px solid rgba(36, 76, 29, 0.06);
  background:
    radial-gradient(circle at 8% 6%, rgba(76, 123, 53, 0.12), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9f2 100%);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.58fr 0.92fr;
  gap: 54px;
  align-items: stretch;
}

.product-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  border: 1px solid rgba(18, 39, 22, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(76, 123, 53, 0.11), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #fdfdf9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 70px rgba(22, 45, 25, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.product-feature > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 74% center;
}

.product-feature > div {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 46px 50px;
}

.product-feature h2 {
  margin-top: 16px;
  font-size: 38px;
  line-height: 1.32;
}

.product-feature p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #465249;
  font-size: 13px;
  line-height: 1.9;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border: 1px solid rgba(42, 101, 33, 0.13);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(250, 253, 246, 0.86);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.product-list {
  display: grid;
  align-content: stretch;
  gap: 0;
  border-top: 1px solid rgba(18, 39, 22, 0.1);
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
}

.product-list article {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  min-height: 136px;
  padding: 28px 6px 28px 74px;
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
  background: transparent;
}

.product-list article:last-child {
  border-bottom: 0;
}

.product-list span {
  position: absolute;
  left: 6px;
  top: 31px;
  color: rgba(39, 91, 34, 0.3);
  font-family: var(--headline);
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
}

.product-list h3,
.process-line h3,
.news-grid h3 {
  margin: 0;
  color: #121914;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.product-list p {
  margin: 10px 0 0;
  color: #566258;
  font-size: 12px;
  line-height: 1.7;
}

.choose-section {
  padding: 110px 0 118px;
  background: #fdfdf9;
}

.advantage-editorial {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 82px;
  align-items: center;
}

.advantage-visual {
  position: relative;
  min-width: 0;
  height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.advantage-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(10, 21, 12, 0), rgba(10, 32, 14, 0.58));
}

.advantage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
  color: #ffffff;
}

.advantage-visual strong {
  font-family: var(--headline);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.advantage-visual span {
  width: min(100%, 380px);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.advantage-copy {
  min-width: 0;
}

.advantage-copy h2 {
  width: min(100%, 560px);
  margin: 16px 0 34px;
  color: #101511;
  font-family: var(--headline);
  font-size: 42px;
  line-height: 1.34;
  font-weight: 700;
}

.advantage-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 42px;
  border-top: 1px solid rgba(18, 39, 22, 0.1);
}

.advantage-points article {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
}

.advantage-points img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.advantage-points h3 {
  margin: 0;
  color: #121914;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.advantage-points p {
  margin: 9px 0 0;
  color: #566258;
  font-size: 12px;
  line-height: 1.62;
}

.environment-section {
  padding: 106px 0 118px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  position: relative;
  width: fit-content;
  font-size: 30px;
  line-height: 1.1;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 34px;
  height: 1px;
  background: var(--green-700);
  transform: translateX(-50%);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: advantage-card;
}

.choose-grid article {
  counter-increment: advantage-card;
  min-width: 0;
  min-height: 168px;
  display: grid;
  justify-items: start;
  align-content: start;
  padding: 24px 24px 22px;
  border: 1px solid rgba(18, 39, 22, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(76, 123, 53, 0.12), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fdfdf9 100%),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 46px rgba(22, 45, 25, 0.055);
  text-align: left;
}

.choose-grid img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.choose-grid h3,
.environment-grid h3 {
  margin: 0;
  color: #121914;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.choose-grid p {
  margin: 10px 0 0;
  color: #566258;
  font-size: 11px;
  line-height: 1.7;
  font-weight: 500;
}

.environment-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-template-rows: 238px 238px;
  gap: 24px;
}

.environment-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #10210f;
  box-shadow: 0 24px 58px rgba(22, 45, 25, 0.1);
}

.environment-grid article:first-child {
  grid-row: 1 / span 2;
}

.environment-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.environment-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 23, 12, 0) 36%, rgba(9, 23, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(9, 23, 12, 0.16), rgba(9, 23, 12, 0));
}

.environment-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.environment-grid h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 48px;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-family: var(--headline);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.environment-grid p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.quality-section {
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 50% 0%, rgba(76, 123, 53, 0.12), rgba(255, 255, 255, 0) 36%),
    #f7faf3;
}

.quality-band {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: var(--grid-gap);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quality-band h2 {
  position: relative;
  grid-column: 1 / -1;
  justify-self: center;
  padding: 0;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.15;
  white-space: nowrap;
}

.quality-band h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 28px;
  height: 1px;
  background: var(--green-700);
  transform: translateX(-50%);
}

.quality-band article {
  min-width: 0;
  min-height: 154px;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-content: center;
  align-items: center;
  padding: 30px 26px;
  border: 1px solid rgba(18, 39, 22, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(76, 123, 53, 0.11), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #fdfdf9 100%),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 62px rgba(22, 45, 25, 0.07);
}

.quality-band img {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quality-band strong {
  color: #1a231d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.quality-band span {
  color: #566258;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
}

.choose-grid article,
.environment-grid article,
.quality-band article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.choose-grid article::before,
.environment-grid article::before,
.quality-band article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(47, 103, 40, 0.5), rgba(47, 103, 40, 0.08) 58%, rgba(47, 103, 40, 0));
}

.environment-grid article::before {
  display: none;
}

.choose-grid article::after {
  content: counter(advantage-card, decimal-leading-zero);
  position: absolute;
  top: 19px;
  right: 22px;
  color: rgba(39, 91, 34, 0.16);
  font-family: var(--headline);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.choose-grid img,
.quality-band img {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.choose-grid article:hover,
.environment-grid article:hover,
.quality-band article:hover {
  border-color: rgba(42, 101, 33, 0.18);
  background-color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 58px rgba(26, 54, 28, 0.12);
  transform: translateY(-5px);
  z-index: 2;
}

.choose-grid article:hover img,
.quality-band article:hover img {
  box-shadow: none;
  transform: translateY(-1px);
}

.environment-grid article:hover img {
  transform: scale(1.035);
}

.process-section {
  padding: 108px 0 116px;
  background: #fdfdf9;
}

.process-board {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: stretch;
}

.process-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.process-photo img {
  width: 100%;
  height: 100%;
  min-height: 484px;
  object-fit: cover;
}

.process-line {
  display: grid;
  align-content: stretch;
  border-top: 1px solid rgba(18, 39, 22, 0.1);
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
}

.process-line article {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 22px;
  align-content: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
}

.process-line article:last-child {
  border-bottom: 0;
}

.process-line span {
  color: rgba(39, 91, 34, 0.28);
  font-family: var(--headline);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.process-line h3 {
  margin: 0;
  color: #121914;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.process-line p {
  grid-column: 2;
  margin: 10px 0 0;
  color: #566258;
  font-size: 12px;
  line-height: 1.72;
}

.partner-section {
  padding: 106px 0 116px;
  border-top: 1px solid rgba(36, 76, 29, 0.06);
  border-bottom: 1px solid rgba(36, 76, 29, 0.06);
  background:
    radial-gradient(circle at 92% 10%, rgba(76, 123, 53, 0.12), rgba(255, 255, 255, 0) 32%),
    #ffffff;
}

.partner-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 76px;
  align-items: start;
}

.partner-heading {
  position: sticky;
  top: 108px;
  min-width: 0;
}

.partner-heading h2 {
  width: min(100%, 510px);
  margin: 16px 0 26px;
  color: #101511;
  font-family: var(--headline);
  font-size: 42px;
  line-height: 1.34;
  font-weight: 700;
}

.partner-heading p:not(.eyebrow) {
  width: min(100%, 500px);
  margin: 0;
  color: #465249;
  font-size: 13px;
  line-height: 1.9;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(18, 39, 22, 0.1);
  border-left: 1px solid rgba(18, 39, 22, 0.1);
}

.partner-grid article {
  position: relative;
  min-height: 214px;
  display: grid;
  align-content: end;
  padding: 36px 38px;
  border-right: 1px solid rgba(18, 39, 22, 0.1);
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(76, 123, 53, 0.08), rgba(255, 255, 255, 0) 44%),
    rgba(255, 255, 255, 0.72);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.partner-grid article:hover {
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0 28px 58px rgba(26, 54, 28, 0.11);
  transform: translateY(-4px);
}

.partner-grid span {
  position: absolute;
  top: 30px;
  left: 36px;
  color: rgba(39, 91, 34, 0.24);
  font-family: var(--headline);
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}

.partner-grid h3 {
  margin: 0;
  color: #121914;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.partner-grid p {
  margin: 12px 0 0;
  color: #566258;
  font-size: 12px;
  line-height: 1.72;
}

.news-section {
  padding: 106px 0 112px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

.news-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  align-items: stretch;
}

.news-feature {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 39, 22, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 66px rgba(22, 45, 25, 0.085);
}

.news-feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.news-feature > div {
  padding: 34px 38px 38px;
}

.news-list {
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(18, 39, 22, 0.1);
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
}

.news-list article {
  min-width: 0;
  padding: 38px 0;
  border-bottom: 1px solid rgba(18, 39, 22, 0.1);
}

.news-list article:last-child {
  border-bottom: 0;
}

.news-feature time,
.news-list time {
  color: rgba(39, 91, 34, 0.55);
  font-family: var(--headline);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.news-feature h3,
.news-list h3 {
  margin: 18px 0 0;
  color: #121914;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 800;
}

.news-feature p,
.news-list p {
  margin: 12px 0 0;
  color: #566258;
  font-size: 12px;
  line-height: 1.72;
}

.news-feature span,
.news-list span {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 6px 11px;
  border: 1px solid rgba(42, 101, 33, 0.12);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(250, 253, 246, 0.88);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.product-list article,
.news-feature,
.news-list article {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.product-list article:hover,
.news-feature:hover,
.news-list article:hover {
  transform: translateY(-3px);
}

.product-feature:hover {
  border-color: rgba(42, 101, 33, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 36px 82px rgba(22, 45, 25, 0.12);
  transform: translateY(-4px);
}

.supply-section {
  padding: 0 0 116px;
  background: #f6f9f2;
}

.supply-panel {
  position: relative;
  min-height: 432px;
  display: grid;
  grid-template-columns: 0.82fr 0.78fr 1.12fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  padding: 56px 60px;
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 8%, rgba(127, 170, 86, 0.24), rgba(23, 63, 23, 0) 34%),
    linear-gradient(135deg, #163d16 0%, #0a2310 100%);
  box-shadow: 0 32px 82px rgba(22, 45, 25, 0.18);
}

.supply-copy,
.supply-metrics,
.supply-photo {
  position: relative;
  z-index: 1;
}

.supply-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.supply-copy h2 {
  width: min(100%, 520px);
  margin: 16px 0 24px;
  color: #ffffff;
  font-family: var(--headline);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
}

.supply-copy p:not(.eyebrow) {
  width: min(100%, 500px);
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.supply-metrics {
  display: grid;
  gap: 14px;
}

.supply-metrics article {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.supply-metrics strong {
  color: #ffffff;
  font-family: var(--headline);
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
}

.supply-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.supply-photo {
  height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.supply-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.cta-section {
  padding: 0 0 70px;
  background: #fbfcf8;
}

.cta-card {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(14, 50, 18, 0.28) 0%, rgba(22, 68, 22, 0.18) 38%, rgba(22, 68, 22, 0.04) 62%, rgba(255, 255, 255, 0) 100%),
    url("./assets/site/cta-delivery-premium.png?v=module-images-1");
  background-size: 100% 100%, cover;
  background-position: center, center;
  box-shadow: 0 28px 72px rgba(34, 64, 29, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 82px rgba(34, 64, 29, 0.22);
}

.cta-copy {
  width: 520px;
  display: grid;
  gap: 14px;
  padding-left: 58px;
  color: #ffffff;
}

.cta-copy strong {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.2;
}

.cta-copy small {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.cta-button {
  position: relative;
  left: auto;
  bottom: auto;
  flex: 0 0 auto;
  min-width: 104px;
  height: 34px;
  padding: 0 18px;
  color: #2d5d25;
  background: #ffffff;
  box-shadow: 0 7px 16px rgba(16, 44, 15, 0.16);
  font-size: 11px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 16% 0%, rgba(95, 148, 64, 0.24), rgba(20, 59, 20, 0) 32%),
    linear-gradient(135deg, #163d16 0%, #0c2610 100%);
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 0.82fr 1.32fr 0.9fr;
  gap: 38px;
  padding: 54px 0 36px;
}

.footer-grid section {
  min-width: 0;
}

.footer-grid section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 34px;
}

.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-mark {
  width: 66px;
  height: 46px;
  flex: 0 0 auto;
  background: transparent;
}

.footer-brand-line strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 800;
}

.footer-brand-line small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.footer-grid h2 {
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.62;
  font-weight: 500;
}

.footer-brand p {
  width: 220px;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.qr-panel > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
}

.qr-panel img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 5px;
  border-radius: 6px;
  background: #ffffff;
}

.qr-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.6;
}

.copyright {
  width: min(calc(100% - 96px), var(--content-max));
  margin: 0 auto;
  padding: 0 0 22px;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(18, 57, 16, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 22px;
  }

  .brand {
    width: 195px;
  }
}

@media (max-width: 760px) {
  .shell,
  .copyright {
    width: min(calc(100% - 32px), 830px);
  }

  .header-shell {
    gap: 14px;
  }

  .brand {
    width: auto;
    min-width: 0;
    flex: 1;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(31, 80, 28, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(31, 80, 28, 0.08);
  }

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

  .menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(38, 92, 31, 0.08);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--green-800);
  }

  .hero {
    min-height: 660px;
  }

  .hero-visual {
    inset: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 100%;
    background-position: 62% bottom;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.66) 63%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.74) 58%, rgba(255, 255, 255, 0.12) 100%);
  }

  .hero-shell {
    min-height: 660px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 38px;
  }

  .hero h1 {
    width: min(100%, 360px);
    font-size: 38px;
  }

  .hero-copy > p:not(.hero-kicker) {
    width: min(100%, 345px);
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .stats-band {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band article {
    min-height: 66px;
  }

  .stats-band article + article {
    border-left: 0;
  }

  .stats-band article:nth-child(2n) {
    border-left: 1px solid rgba(36, 76, 29, 0.12);
  }

  .stats-band article:nth-child(n + 3) {
    border-top: 1px solid rgba(36, 76, 29, 0.12);
  }

  .stats-section {
    padding: 32px 0 56px;
  }

  .about-section,
  .product-section,
  .supply-section,
  .choose-section,
  .environment-section,
  .quality-section,
  .process-section,
  .partner-section,
  .news-section {
    padding: 64px 0;
  }

  .cta-section {
    padding-bottom: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-photo > img {
    width: 100%;
    height: auto;
    aspect-ratio: 382 / 298;
  }

  .quote-card {
    left: 12px;
    bottom: -20px;
  }

  .about-copy h2,
  .about-body {
    width: min(100%, 360px);
  }

  .about-copy h2 {
    font-size: 31px;
  }

  .about-body {
    font-size: 13px;
  }

  .product-showcase,
  .product-feature,
  .supply-panel,
  .advantage-editorial,
  .advantage-points,
  .process-board,
  .partner-layout,
  .partner-grid,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .supply-panel {
    min-height: 0;
    gap: 24px;
    padding: 30px 24px;
  }

  .supply-copy h2 {
    font-size: 28px;
  }

  .supply-copy p:not(.eyebrow) {
    font-size: 12px;
  }

  .supply-metrics {
    grid-template-columns: 1fr;
  }

  .supply-photo {
    height: 220px;
  }

  .product-feature > img {
    min-height: 190px;
    height: 190px;
  }

  .product-feature > div {
    padding: 24px 22px 26px;
  }

  .product-feature h2 {
    width: min(100%, 360px);
    font-size: 25px;
  }

  .product-list article {
    min-height: 88px;
    padding-left: 58px;
  }

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

  .environment-grid,
  .quality-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .advantage-editorial {
    gap: 28px;
  }

  .advantage-visual {
    height: 300px;
  }

  .advantage-copy h2 {
    width: min(100%, 360px);
    font-size: 25px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .quality-band h2 {
    font-size: 25px;
  }

  .environment-grid {
    grid-template-rows: none;
    gap: 16px;
  }

  .environment-grid article:first-child {
    grid-row: auto;
  }

  .environment-grid article:nth-child(4) {
    grid-column: auto;
  }

  .environment-grid article {
    min-height: 220px;
  }

  .process-photo img {
    min-height: 230px;
  }

  .process-line article {
    grid-template-columns: 52px 1fr;
  }

  .partner-layout {
    gap: 30px;
  }

  .partner-heading {
    position: static;
  }

  .partner-heading h2 {
    width: min(100%, 360px);
    font-size: 28px;
  }

  .partner-grid {
    border-left: 0;
  }

  .partner-grid article {
    min-height: 162px;
    padding: 30px 24px 26px;
    border-left: 1px solid rgba(18, 39, 22, 0.1);
  }

  .news-feature img {
    height: 210px;
  }

  .news-feature > div {
    padding: 22px;
  }

  .quality-band h2 {
    padding: 22px 22px 0;
  }

  .quality-band article {
    border-left: 1px solid rgba(18, 39, 22, 0.08);
    border-top: 1px solid rgba(18, 39, 22, 0.08);
    min-height: 132px;
  }

  .cta-card {
    align-items: flex-start;
    min-height: 176px;
    background-size: 100% 100%, auto 100%;
  }

  .cta-copy {
    width: 100%;
    padding: 22px;
  }

  .cta-copy strong {
    font-size: 25px;
  }

  .cta-button {
    position: absolute;
    left: 22px;
    bottom: 24px;
  }

  .footer-grid section + section {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 0;
  }
}
