@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,700..900,55,1&display=swap");

:root{
  --bg: #f7f7f2;
  --surface: #ffffff;
  --surface-alt: #f4f5ec;
  --text: #1b2430;
  --muted: #57606a;
  --border: rgba(20, 34, 27, .10);
  --green: #2f7d2d;
  --green-dark: #1f5d21;
  --green-soft: rgba(47, 125, 45, .10);
  --gold: #c6952b;
  --amber: #dfb34c;
  --shadow: 0 24px 60px rgba(16, 24, 40, .10);
  --shadow-strong: 0 28px 80px rgba(16, 24, 40, .16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(47,125,45,.10), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(223,179,76,.10), transparent 24%),
    linear-gradient(180deg,#fff 0%,var(--bg) 100%);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  margin-bottom:0;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .25s ease, border-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(18px);
  border-bottom-color:rgba(17,24,39,.08);
  box-shadow:0 14px 30px rgba(16,24,40,.08);
}
.header-inner{
  min-height:80px;
  display:flex;
  align-items:center;
  gap:18px;
  width:100%;
  padding-left:12px;
  padding-right:clamp(14px, 3vw, 40px);
}
.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.brand-logo{
  width:auto;
  height:auto;
  max-height:112px;
  object-fit:contain;
  filter:brightness(1.95) contrast(1.02) saturate(1.22) drop-shadow(0 12px 26px rgba(0,0,0,.46));
}
.site-header.is-scrolled .brand-logo{
  width:auto;
  max-height:72px;
  filter:none;
}
.site-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.site-nav a{
  color:#fff;
  font-size:14px;
  font-weight:700;
  text-shadow:0 1px 14px rgba(0,0,0,.28);
  transition:color .2s ease;
}
.site-header.is-scrolled .site-nav a{
  color:#2b3340;
  text-shadow:none;
}
.site-nav a:hover,
.site-nav a:focus-visible{
  color:var(--green);
}
.contact-pill,
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.contact-pill{
  margin-left:8px;
  padding:12px 18px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  backdrop-filter:blur(12px);
  box-shadow:0 16px 32px rgba(0,0,0,.12);
}
.site-header.is-scrolled .contact-pill{
  background:linear-gradient(135deg,var(--green-dark),var(--green));
  border-color:transparent;
  box-shadow:0 16px 32px rgba(47,125,45,.22);
}
.contact-pill:hover,
.button:hover{
  transform:translateY(-2px);
}
.contact-pill__icon{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
}
.contact-pill__icon svg,
.stat-icon svg,
.chain-icon svg,
.impact-icon svg,
.trust-row svg,
.contact-lines svg{
  width:18px;
  height:18px;
  stroke:currentColor;
}

.menu-toggle{
  display:none;
  margin-left:auto;
  width:52px;
  height:52px;
  border:1px solid rgba(255,255,255,.38);
  background:rgba(255,255,255,.20);
  color:#fff;
  border-radius:16px;
  padding:0;
  font-weight:800;
  backdrop-filter:blur(10px);
  box-shadow:0 16px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.24);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}
.site-header.is-scrolled .menu-toggle{
  border-color:rgba(47,125,45,.16);
  background:#fff;
  color:var(--green-dark);
  box-shadow:0 14px 28px rgba(16,24,40,.10);
}
.menu-toggle span{
  display:block;
  width:24px;
  height:3px;
  border-radius:999px;
  background:currentColor;
  box-shadow:0 1px 8px rgba(0,0,0,.25);
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child{
  transform:translateY(9px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.menu-toggle[aria-expanded="true"] span:last-child{
  transform:translateY(-9px) rotate(-45deg);
}

.hero{
  position:relative;
  min-height:calc(100svh - 80px);
  overflow:hidden;
  background:#102418;
  isolation:isolate;
}
.agro-home .hero{
  min-height:100svh;
}
.hero-slider{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  animation:heroSlideFade 21s infinite;
  pointer-events:none;
}
.hero-slide--pepper{
  animation-delay:7s;
}
.hero-slide--products{
  animation-delay:14s;
}
.hero-media,
.impact-band__image{
  position:absolute;
  inset:0;
}
.hero-media img,
.impact-band__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-slide .hero-media img{
  transform:scale(1.06);
  animation:heroImageDrift 21s ease-in-out infinite;
}
.hero-slide--pepper .hero-media img{
  animation-delay:7s;
}
.hero-slide--products .hero-media img{
  animation-delay:14s;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4, 11, 6, .70) 0%, rgba(4, 11, 6, .48) 38%, rgba(4, 11, 6, .18) 63%, rgba(4, 11, 6, .08) 100%),
    linear-gradient(180deg, rgba(7, 22, 10, .20) 0%, rgba(7, 22, 10, .08) 54%, rgba(7, 22, 10, .24) 100%);
  z-index:1;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 32%, rgba(255,255,255,.10), transparent 14%),
    radial-gradient(circle at 74% 14%, rgba(255,207,99,.18), transparent 18%);
  z-index:1;
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  align-items:flex-start;
  min-height:clamp(620px, 76svh, 760px);
  padding-top:28px;
  padding-bottom:64px;
}
.hero-slide .hero-content{
  opacity:0;
  transform:translateY(24px);
  animation:heroCopyReveal 21s infinite;
}
.hero-slide--pepper .hero-content{
  animation-delay:7s;
}
.hero-slide--products .hero-content{
  animation-delay:14s;
}
.hero-copy{
  max-width:640px;
  color:#fff;
}
.hero-badge,
.section-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#edf8e6;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:800;
}
.hero-badge{
  margin-top:100px;
}
.hero-copy h1{
  margin:20px 0 18px;
  font-family:"Fraunces","Sora",serif;
  font-variation-settings:"SOFT" 55, "WONK" 1;
  font-size:clamp(52px, 6.5vw, 84px);
  line-height:.9;
  letter-spacing:0;
  font-weight:900;
}
.hero-copy h1 span{
  color:#a5ea7a;
}
.hero-copy p{
  max-width:520px;
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:clamp(18px, 2vw, 23px);
  line-height:1.55;
}
.hero-slider-ui{
  display:none;
}
@keyframes heroSlideFade{
  0%,29%{opacity:1}
  33.33%,100%{opacity:0}
}
@keyframes heroImageDrift{
  0%{transform:scale(1.06) translate3d(0,0,0)}
  29%{transform:scale(1.12) translate3d(-1.8%, -1.2%, 0)}
  33.33%,95%{transform:scale(1.08) translate3d(1%, 0, 0)}
  100%{transform:scale(1.06) translate3d(0,0,0)}
}
@keyframes heroCopyReveal{
  0%{opacity:0;transform:translateY(24px)}
  6%,28%{opacity:1;transform:translateY(0)}
  33.33%,100%{opacity:0;transform:translateY(-12px)}
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
  margin-bottom:26px;
}
.button{
  min-height:50px;
  padding:0 22px;
  border:1px solid transparent;
  cursor:pointer;
}
.button-primary{
  background:linear-gradient(135deg,var(--green-dark),var(--green));
  color:#fff;
  box-shadow:0 18px 36px rgba(47,125,45,.28);
}
.button-secondary{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.28);
  color:#fff;
  backdrop-filter:blur(10px);
}
.button-small{
  min-height:44px;
  padding:0 18px;
  font-size:14px;
}

.stats-wrap{
  position:relative;
  z-index:3;
  margin-top:0;
  padding-top:30px;
  padding-bottom:32px;
  background:linear-gradient(180deg,#fff 0%, var(--bg) 100%);
}
.stats-card{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:0;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(18,34,20,.08);
  border-radius:26px;
  box-shadow:var(--shadow-strong);
  overflow:hidden;
}
.stat-item{
  min-height:126px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:22px 16px;
  border-right:1px solid rgba(18,34,20,.08);
}
.stat-item:last-child{border-right:0}
.stat-icon{
  color:var(--green);
  margin-bottom:8px;
  display:grid;
  place-items:center;
}
.stat-item strong{
  display:block;
  font-family:"Sora",sans-serif;
  font-size:clamp(28px, 2.2vw, 38px);
  line-height:1;
  letter-spacing:-.04em;
}
.stat-item small{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.section{
  padding:88px 0;
}
.page-hero{
  position:relative;
  min-height:560px;
  overflow:hidden;
  background:#102418;
  isolation:isolate;
}
.page-hero__media{
  position:absolute;
  inset:0;
}
.page-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.page-hero__shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(4, 11, 6, .78) 0%, rgba(4, 11, 6, .58) 48%, rgba(4, 11, 6, .18) 100%),
    linear-gradient(180deg, rgba(4, 11, 6, .28), rgba(4, 11, 6, .42));
}
.page-hero__content{
  position:relative;
  z-index:2;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  color:#fff;
  padding-top:72px;
  padding-bottom:64px;
  max-width:900px;
}
.page-hero__content h1{
  margin:18px 0 18px;
  font-family:"Sora",sans-serif;
  font-size:clamp(42px, 5.5vw, 76px);
  line-height:1;
  letter-spacing:-.04em;
}
.page-hero__content p{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:clamp(18px, 2vw, 23px);
  line-height:1.6;
}
.page-split{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(360px, .8fr);
  gap:34px;
  align-items:start;
}
.page-split h2,
.value-page-card h2,
.product-page-card h2,
.impact-page-grid h2,
.page-panel h2{
  margin:12px 0 14px;
  font-family:"Sora",sans-serif;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.08;
  letter-spacing:-.04em;
}
.page-split p,
.page-panel p,
.value-page-card p,
.product-page-card p,
.impact-page-grid p,
.page-info-card p,
.timeline-grid p{
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}
.page-panel,
.page-info-card,
.product-page-card,
.impact-page-grid article,
.timeline-grid article{
  background:#fff;
  border:1px solid rgba(18,34,20,.08);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.page-panel{
  padding:28px;
}
.page-panel h3,
.page-info-card h3,
.timeline-grid h3{
  margin:0 0 10px;
  font-family:"Sora",sans-serif;
  font-size:22px;
}
.page-band{
  background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(241,244,232,.70));
}
.page-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.page-info-card{
  padding:26px;
}
.value-page-grid{
  display:grid;
  gap:28px;
}
.value-page-card{
  display:grid;
  grid-template-columns:minmax(360px,.9fr) minmax(0,1fr);
  gap:28px;
  align-items:center;
  padding:22px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(18,34,20,.08);
  box-shadow:var(--shadow);
}
.value-page-card--reverse img{
  order:2;
}
.value-page-card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  border-radius:24px;
}
.product-page-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.product-page-card{
  overflow:hidden;
}
.product-page-card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
}
.product-page-card h2,
.product-page-card p,
.product-page-card span{
  margin-left:20px;
  margin-right:20px;
}
.product-page-card h2{
  margin-top:20px;
  font-size:26px;
}
.product-page-card span{
  display:inline-flex;
  margin-bottom:22px;
  color:var(--green);
  font-weight:800;
  font-size:13px;
}
.timeline-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
.timeline-grid article{
  padding:22px;
}
.timeline-grid strong{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  margin-bottom:16px;
}
.impact-page-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
.impact-page-grid article{
  padding:24px;
}
.impact-page-grid h2{
  font-size:24px;
}
.contact-form{
  display:grid;
  gap:14px;
  padding:28px;
  background:#fff;
  border:1px solid rgba(18,34,20,.08);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.contact-form label{
  display:grid;
  gap:8px;
  color:#2b3340;
  font-weight:800;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(18,34,20,.14);
  border-radius:14px;
  padding:13px 14px;
  color:var(--text);
  background:#fff;
}
.section-grid{
  display:grid;
  gap:40px;
  align-items:center;
}
.about-grid,
.contact-grid{
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
}
.about-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(47,125,45,.08), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(223,179,76,.10), transparent 18%),
    linear-gradient(180deg, #fff 0%, #f7f9f2 100%);
}
.about-section::before{
  content:"";
  position:absolute;
  inset:18px auto auto 10px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(47,125,45,.10), transparent 68%);
  pointer-events:none;
}
.about-section .section-grid{
  position:relative;
}
.about-section .section-copy{
  padding:8px 0;
}
.about-section .section-copy h2{
  max-width:620px;
}
.about-section .section-copy p{
  max-width:620px;
}
.about-section .button-primary{
  margin-top:6px;
  box-shadow:0 18px 42px rgba(47,125,45,.24);
}
.about-media{
  position:relative;
  padding-left:14px;
}
.about-media::before{
  content:"";
  position:absolute;
  inset:24px 10px 24px 0;
  border-radius:36px;
  background:linear-gradient(135deg, rgba(47,125,45,.09), rgba(223,179,76,.10));
  filter:blur(4px);
  transform:rotate(-2deg);
  pointer-events:none;
}
.section-copy h2,
.section-heading h2,
.quality-card h2,
.contact-panel__copy h2{
  margin:14px 0 16px;
  font-family:"Sora",sans-serif;
  font-size:clamp(34px, 4vw, 52px);
  line-height:1.06;
  letter-spacing:-.05em;
}
.section-copy p,
.quality-card p,
.contact-panel__copy p,
.chain-copy p,
.product-copy p,
.impact-item p{
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}
.section-label{
  background:rgba(47,125,45,.08);
  border-color:rgba(47,125,45,.12);
  color:var(--green);
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.trust-row span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(47,125,45,.12);
  box-shadow:0 14px 26px rgba(16,24,40,.05);
  color:#2b3340;
  font-weight:700;
  font-size:13px;
}
.trust-row svg,
.contact-lines svg{
  color:var(--green);
}

.hero-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(18,34,20,.10);
  box-shadow:var(--shadow);
  background:#dfe6d8;
}
.about-media{
  display:grid;
  gap:14px;
}
.about-card img{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit:cover;
}
.badge-ring{
  position:absolute;
  top:16px;
  right:16px;
  width:82px;
  height:82px;
  border-radius:50%;
  background:rgba(255,255,255,.95);
  color:var(--green-dark);
  border:2px solid rgba(47,125,45,.35);
  display:grid;
  place-items:center;
  gap:4px;
  text-align:center;
  font-size:10px;
  font-weight:900;
  box-shadow:0 14px 26px rgba(16,24,40,.12);
  transform:rotate(-10deg);
}
.badge-ring svg{width:20px;height:20px;color:var(--green)}
.thumb-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
.thumb-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(18,34,20,.08);
  box-shadow:0 12px 24px rgba(16,24,40,.08);
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}
.chain-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.chain-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(270px,.94fr);
  gap:18px;
  align-items:center;
  padding:18px;
  background:#fff;
  border-radius:30px;
  border:1px solid rgba(18,34,20,.08);
  box-shadow:var(--shadow);
}
.chain-copy{
  padding:10px 8px 10px 8px;
}
.chain-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(47,125,45,.10);
  color:var(--green);
  margin-bottom:16px;
}
.chain-copy h3,
.product-copy h3,
.impact-item h3{
  margin:0 0 10px;
  font-family:"Sora",sans-serif;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.03em;
}
.chain-copy a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  color:var(--green);
  font-weight:800;
}
.chain-media{
  border-radius:22px;
  overflow:hidden;
}
.chain-media img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
}

.products-section{
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(241,244,232,.65));
}
.products-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:12px;
}
.product-card{
  background:#fff;
  border:1px solid rgba(18,34,20,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(16,24,40,.06);
}
.product-image{
  aspect-ratio:1 / 1;
  overflow:hidden;
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-copy{
  padding:14px 14px 16px;
}
.product-copy h3{
  font-size:18px;
}
.product-copy p{
  margin:0;
  font-size:13px;
  line-height:1.55;
}

.impact-band{
  position:relative;
  min-height:520px;
  overflow:hidden;
  color:#fff;
}
.impact-band__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,16,8,.72), rgba(5,16,8,.76)),
    radial-gradient(circle at 20% 30%, rgba(83,154,65,.18), transparent 28%);
  z-index:1;
}
.impact-inner{
  position:relative;
  z-index:2;
  padding-top:64px;
  padding-bottom:64px;
}
.section-heading--light h2,
.section-heading--light p,
.section-label--light{
  color:#fff;
}
.section-label--light{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
}
.impact-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.impact-item{
  text-align:center;
  padding:18px 10px 6px;
}
.impact-icon{
  width:50px;
  height:50px;
  margin:0 auto 14px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(158, 223, 110, .12);
  color:#d6ffb8;
  border:1px solid rgba(255,255,255,.10);
}
.impact-item h3{
  color:#fff;
  font-size:18px;
}
.impact-item p{
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.6;
}

.quality-card,
.contact-panel{
  background:#fff;
  border:1px solid rgba(18,34,20,.08);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.quality-card{
  position:relative;
  padding:34px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,242,.96)),
    radial-gradient(circle at top right, rgba(47,125,45,.08), transparent 30%);
}
.quality-card::before{
  content:"";
  position:absolute;
  inset:18px 18px auto auto;
  width:84px;
  height:84px;
  border-radius:26px;
  background:linear-gradient(135deg, rgba(47,125,45,.12), rgba(223,179,76,.14));
  filter:blur(1px);
  opacity:.7;
}
.quality-card .section-label{
  position:relative;
  z-index:1;
}
.check-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:28px;
  color:#2b3340;
  line-height:1.6;
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.35em;
  width:18px;
  height:18px;
  border-radius:50%;
  background:rgba(47,125,45,.12);
  border:1px solid rgba(47,125,45,.22);
  box-shadow:inset 0 0 0 4px #fff;
}
.contact-panel{
  overflow:hidden;
  position:relative;
  display:grid;
  grid-template-rows:auto 1fr;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,242,.94)),
    radial-gradient(circle at top left, rgba(223,179,76,.10), transparent 28%);
}
.contact-panel::before{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(47,125,45,.10), transparent 64%);
  pointer-events:none;
}
.contact-panel__image{
  padding:16px 16px 0;
}
.contact-panel__image img{
  width:100%;
  aspect-ratio:1.15 / .78;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 18px 40px rgba(16,24,40,.12);
  object-position:center 42%;
  background:
    radial-gradient(circle at 50% 30%, rgba(47,125,45,.08), transparent 38%),
    #fff;
}
.contact-panel__copy{
  position:relative;
  padding:20px 28px 30px;
}
.contact-panel__copy .section-label{
  display:inline-flex;
  margin-bottom:10px;
}
.contact-panel__copy p{
  max-width:640px;
}
.contact-lines{
  display:grid;
  gap:12px;
  margin:24px 0 26px;
}
.contact-lines span{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  color:#243140;
  line-height:1.45;
  font-weight:800;
  border-radius:18px;
  border:1px solid rgba(47,125,45,.10);
  background:linear-gradient(135deg, rgba(47,125,45,.05), rgba(255,255,255,.94));
  box-shadow:0 12px 24px rgba(16,24,40,.05);
}
.contact-lines a{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(47,125,45,.10);
  background:linear-gradient(135deg, rgba(47,125,45,.05), rgba(255,255,255,.94));
  box-shadow:0 12px 24px rgba(16,24,40,.05);
  color:inherit;
  text-decoration:none;
  line-height:1.45;
  font-weight:800;
}
.contact-lines svg{
  flex:0 0 auto;
  margin-top:2px;
}
.contact-panel__copy .button-primary{
  align-self:flex-start;
  box-shadow:0 18px 42px rgba(47,125,45,.24);
}

.site-footer{
  padding:38px 0 24px;
  background:#111a13;
  color:rgba(255,255,255,.84);
}
.footer-inner{
  display:grid;
  grid-template-columns:1.25fr .8fr .8fr 1fr;
  gap:24px;
  align-items:start;
}
.brand--footer .brand-logo{
  width:auto;
  max-height:150px;
  filter:brightness(1.75) contrast(1.04) saturate(1.18) drop-shadow(0 12px 22px rgba(0,0,0,.20));
}
.site-footer h3{
  margin:0 0 12px;
  color:#fff;
  font-family:"Sora",sans-serif;
  font-size:16px;
}
.site-footer a,
.site-footer p{
  margin:0 0 10px;
  color:rgba(255,255,255,.76);
  line-height:1.6;
}
.site-footer .footer-inner > div:not(:first-child) > a{
  display:block;
  width:fit-content;
  margin:0 0 12px;
  text-decoration:underline;
  text-decoration-color:rgba(223,179,76,.55);
  text-underline-offset:3px;
  text-decoration-thickness:1px;
}
.site-footer .footer-inner > div:not(:first-child) > a:hover,
.site-footer .footer-inner > div:not(:first-child) > a:focus-visible{
  color:#fff;
  text-decoration-color:var(--amber);
}
.site-footer .footer-contact-link{
  display:flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  margin:0 0 12px;
  text-decoration:none;
}
.site-footer .footer-contact-link::before{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:999px;
  flex:0 0 28px;
  background:linear-gradient(135deg, rgba(223,179,76,.95), rgba(47,125,45,.92));
  color:#fff;
  font-size:13px;
  font-weight:900;
  line-height:1;
  box-shadow:0 10px 20px rgba(0,0,0,.18);
  content:"↗";
}
.site-footer .footer-contact-link--email::before{content:"@";}
.site-footer .footer-contact-link--phone::before{content:"☎";}
.site-footer .footer-contact-link--link::before{content:"⌂";}
.site-footer .footer-contact-link:hover,
.site-footer .footer-contact-link:focus-visible{
  color:#fff;
}
.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.64);
  font-size:13px;
}

.section-heading h2,
.quality-card h2,
.contact-panel__copy h2{
  text-wrap:balance;
}

@media (max-width: 1180px){
  .stats-card{grid-template-columns:repeat(3, minmax(0,1fr))}
  .chain-grid,
  .impact-grid,
  .impact-page-grid,
  .timeline-grid,
  .footer-inner{grid-template-columns:repeat(2, minmax(0,1fr))}
  .products-grid,
  .product-page-grid,
  .page-card-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
  .chain-card{grid-template-columns:1fr}
}

@media (max-width: 860px){
  .header-inner{
    min-height:72px;
    padding-left:8px;
    padding-right:14px;
  }
  .site-nav{
    position:absolute;
    left:20px;
    right:20px;
    top:76px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px;
    border-radius:24px;
    background:rgba(255,255,255,.97);
    border:1px solid rgba(47,125,45,.16);
    box-shadow:0 24px 70px rgba(16,24,40,.22);
    backdrop-filter:blur(18px);
  }
  .site-nav.is-open{display:flex}
  .site-nav a{
    width:100%;
    padding:15px 16px;
    border-radius:16px;
    color:#142018;
    font-size:16px;
    font-weight:900;
    text-shadow:none;
    border:1px solid rgba(47,125,45,.10);
    background:linear-gradient(135deg,rgba(47,125,45,.08),rgba(255,255,255,.84));
    box-shadow:0 10px 22px rgba(16,24,40,.06);
  }
  .site-nav a + a{
    margin-top:8px;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible{
    color:#fff;
    background:linear-gradient(135deg,var(--green-dark),var(--green));
  }
  .menu-toggle{display:inline-flex}
  .contact-pill{display:none}
  .brand-logo{
    width:auto;
    max-height:92px;
  }
  .site-header.is-scrolled .brand-logo{
    width:auto;
    max-height:64px;
  }
  .hero-content{padding-top:120px}
  .stats-wrap{padding-top:24px}
  .about-grid,
  .contact-grid,
  .page-split,
  .value-page-card,
  .footer-inner,
  .impact-grid,
  .impact-page-grid,
  .timeline-grid,
  .chain-grid{
    grid-template-columns:1fr;
  }
  .value-page-card--reverse img{order:0}
  .products-grid,
  .product-page-grid,
  .page-card-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .hero-copy h1{line-height:.96}
  .page-hero,
  .page-hero__content{
    min-height:480px;
  }
  .about-media{
    padding-left:0;
  }
  .about-media::before{
    inset:18px 0 18px 0;
  }
  .quality-card{
    padding:28px 22px 24px;
  }
  .contact-panel{
    grid-template-rows:auto auto;
  }
  .contact-panel__image{
    padding:12px 12px 0;
  }
  .contact-panel__copy{
    padding:18px 20px 24px;
  }
}

@media (max-width: 640px){
  .container{width:min(calc(100% - 28px), var(--container))}
  .hero{
    min-height:auto;
  }
  .hero-content{
    min-height:auto;
    padding-top:132px;
    padding-bottom:74px;
  }
  .hero-badge{
    margin-top:0;
    max-width:100%;
    padding:7px 11px;
    font-size:11px;
    letter-spacing:.06em;
    white-space:normal;
  }
  .hero-copy h1{
    font-size:clamp(40px, 16vw, 58px);
  }
  .hero-copy p{
    font-size:17px;
  }
  .hero-actions,
  .trust-row{
    gap:10px;
  }
  .hero-actions{
    margin-bottom:42px;
  }
  .stats-card{
    grid-template-columns:repeat(2, minmax(0,1fr));
    border-radius:22px;
  }
  .stat-item{
    min-height:112px;
    padding:18px 10px;
  }
  .section{
    padding:72px 0;
  }
  .section-copy h2,
  .section-heading h2,
  .quality-card h2,
  .contact-panel__copy h2{
    font-size:clamp(30px, 8.3vw, 42px);
  }
  .products-grid{
    grid-template-columns:1fr;
  }
  .product-page-grid,
  .page-card-grid{
    grid-template-columns:1fr;
  }
  .page-hero,
  .page-hero__content{
    min-height:420px;
  }
  .page-hero__content h1{
    font-size:clamp(34px, 12vw, 48px);
  }
  .contact-panel__copy{
    padding:16px 18px 22px;
  }
  .about-section .section-copy h2,
  .quality-card h2,
  .contact-panel__copy h2{
    font-size:clamp(28px, 7.7vw, 40px);
  }
  .contact-lines span{
    font-size:14px;
  }
}
