:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f6f4ef;
  --ink: #17301f;
  --ink-soft: #4f6356;
  --line: rgba(24, 49, 32, 0.12);
  --green-700: #1f5d33;
  --green-600: #2a7b41;
  --green-500: #429554;
  --green-100: #edf6ee;
  --gold-400: #cfad57;
  --shadow: 0 24px 56px rgba(24, 49, 32, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(33, 93, 56, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 49, 32, 0.08);
}

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

.brand {
  width: 250px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: #183121;
}

.site-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--green-600);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--green-600), var(--green-700));
  box-shadow: 0 14px 24px rgba(31, 93, 51, 0.22);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.hero-section,
.page-pad,
.split-section,
.product-preview,
.process-section,
.news-section {
  padding: 34px 0 24px;
}

.hero-grid,
.split-grid,
.product-detail-grid,
.contact-panel {
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 680px;
}

.hero-copy {
  padding: 34px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.light-kicker {
  color: rgba(255, 255, 255, 0.8);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.06rem;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 34px;
}

.hero-media img,
.image-card img,
.wide-image img,
.hero-banner-image img,
.detail-hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-media {
  height: 560px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.trusted-by {
  display: grid;
  gap: 18px;
}

.trusted-by span {
  font-size: 0.92rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: #2b4233;
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-row span {
  white-space: nowrap;
}

.feature-strip-grid,
.process-steps,
.product-grid,
.news-grid,
.footer-main,
.sustainability-pillars,
.timeline-steps {
  display: grid;
  gap: 20px;
}

.feature-strip-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mini-feature,
.product-card,
.news-card,
.sustainability-pillars article,
.timeline-steps article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 49, 32, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 34px rgba(24, 49, 32, 0.08);
}

.mini-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  border-radius: 14px;
  color: var(--green-600);
  flex-shrink: 0;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.section-lead {
  margin: 20px 0 18px;
  font-size: 1.06rem;
}

.check-list {
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 25%, transparent 26%),
    linear-gradient(180deg, var(--green-600), var(--green-700));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.84);
}

.image-card {
  overflow: hidden;
  min-height: 470px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.center-heading {
  justify-content: center;
  text-align: center;
}

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

.product-card,
.news-card {
  overflow: hidden;
}

.product-card img,
.news-card img {
  aspect-ratio: 1.1 / 0.82;
  object-fit: cover;
}

.product-card-body,
.news-card-body {
  padding: 18px 20px 22px;
}

.product-showcase-intro {
  max-width: 620px;
  margin-top: 12px;
}

.product-card-body p,
.news-card-body p {
  margin-top: 8px;
  font-size: 0.95rem;
}

.category-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
  line-height: 1.55;
}

.availability-note {
  margin-top: 22px;
  max-width: 760px;
  font-size: 0.98rem;
}

.product-card-body a,
.news-card-body a {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-600);
  font-weight: 700;
}

.home-testimonials-section {
  padding-top: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 49, 32, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 49, 32, 0.08);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 3px solid rgba(42, 123, 65, 0.16);
  box-shadow: 0 12px 24px rgba(24, 49, 32, 0.12);
}

.testimonial-avatar-farmer {
  object-position: 46% 28%;
}

.testimonial-avatar-warehouse {
  object-position: 74% 34%;
}

.testimonial-avatar-farmer-alt {
  object-position: 55% 20%;
}

.testimonial-quote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.85;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.testimonial-meta strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial-meta span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.home-faq-section {
  padding-top: 32px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 49, 32, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(24, 49, 32, 0.08);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  flex: 0 0 auto;
  color: var(--green-600);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  max-width: 860px;
}

.process-steps {
  grid-template-columns: repeat(5, 1fr);
  margin: 26px 0 30px;
}

.process-steps article,
.timeline-steps article {
  padding: 24px 18px;
  text-align: center;
}

.process-steps span,
.timeline-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f8fbf8, #dbeadf);
  color: var(--green-700);
  font-weight: 700;
  border: 1px solid rgba(42, 123, 65, 0.16);
}

.wide-image,
.process-banner {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.wide-image img {
  aspect-ratio: 2.2 / 0.8;
}

.sustainability-callout {
  padding: 34px 0;
}

.sustainability-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(0deg, rgba(8, 47, 24, 0.86), rgba(8, 47, 24, 0.28)),
    url("../images/sustainability-seedling.png") center/cover;
  min-height: 520px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  box-shadow: var(--shadow);
}

.sustainability-copy {
  max-width: 430px;
}

.sustainability-copy p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 16px;
}

.sustainability-pillars {
  grid-template-columns: repeat(3, 1fr);
}

.sustainability-pillars article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.sustainability-pillars article p,
.sustainability-pillars article h3 {
  color: var(--ink);
}

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

.news-card-body span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-news-section {
  padding-top: 32px;
}

.article-tag {
  display: inline-block;
  margin-top: 8px;
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-title {
  margin-top: 14px;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.article-meta {
  margin-top: 14px;
  font-size: 0.98rem;
}

.article-feature {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.article-feature img {
  aspect-ratio: 1.8 / 0.9;
  object-fit: cover;
}

.article-content {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.article-content p {
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-cta {
  margin-top: 36px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f5faf5, #e7f3e8);
  border: 1px solid rgba(42, 123, 65, 0.14);
  box-shadow: 0 20px 40px rgba(24, 49, 32, 0.08);
}

.article-cta p {
  margin-top: 12px;
  max-width: 620px;
}

.article-cta .button {
  margin-top: 18px;
}

.site-footer {
  margin-top: 34px;
  background: linear-gradient(180deg, #f8f6f0 0%, #0d381d 0.2%, #0c3119 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer-map-band {
  padding: 34px 0 12px;
}

.footer-map-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.footer-map-grid h2,
.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.map-graphic {
  min-height: 220px;
}

.map-graphic svg {
  width: 100%;
  height: 100%;
}

.map-graphic path {
  fill: rgba(255, 255, 255, 0.08);
}

.map-graphic line {
  stroke: rgba(127, 220, 164, 0.6);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

.map-graphic circle {
  fill: #a8efbe;
}

.map-graphic text {
  fill: #fff;
  font: 600 13px "Aptos", sans-serif;
}

.footer-newsletter,
.footer-main,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-newsletter {
  align-items: center;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
  display: flex;
  gap: 14px;
  min-width: min(100%, 520px);
}

.newsletter-form input,
.contact-form input,
.contact-form textarea,
.search-wrap input {
  width: 100%;
  border: 1px solid rgba(24, 49, 32, 0.12);
  border-radius: 14px;
  background: #fff;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 170px;
  padding-top: 16px;
  resize: vertical;
}

.footer-main {
  padding: 28px 0;
  align-items: flex-start;
}

.footer-main > * {
  display: grid;
  gap: 12px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  width: 250px;
}

.footer-main a,
.footer-main p,
.footer-bottom a,
.footer-bottom p,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  align-items: center;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.92);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f8f4d;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(21, 86, 47, 0.28);
}

.home-main {
  padding: 0 0 24px;
}

.replica-promise .container,
.replica-trust-band .container {
  width: min(calc(100% - 32px), var(--container));
}

.replica-hero {
  padding-top: 0;
}

.replica-hero-frame {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: min(820px, calc(100vh - 92px));
  background:
    linear-gradient(90deg, rgba(12, 57, 27, 0.88) 0%, rgba(12, 57, 27, 0.72) 33%, rgba(12, 57, 27, 0.22) 63%, rgba(12, 57, 27, 0.06) 100%),
    url("../images/hero-produce.png") center/cover no-repeat;
}

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

.replica-hero-copy {
  max-width: 470px;
  padding: 88px 0;
  color: #fff;
}

.replica-kicker,
.replica-section-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.replica-kicker {
  color: rgba(255, 255, 255, 0.9);
}

.replica-hero-copy h1 {
  margin-top: 16px;
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.14;
  font-weight: 700;
  color: #fff;
}

.replica-hero-copy p:not(.replica-kicker) {
  margin-top: 20px;
  max-width: 430px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.replica-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.replica-outline-button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.replica-promise,
.replica-products-band,
.replica-trust-band {
  padding-top: 24px;
}

.replica-section-shell {
  padding: 24px 22px 34px;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.replica-section-shell h2,
.replica-products-shell h2,
.replica-trust-shell h2 {
  margin-top: 8px;
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #1c291f;
}

.replica-underline {
  display: block;
  width: 48px;
  height: 4px;
  margin: 14px auto 28px;
  background: var(--green-600);
}

.replica-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.replica-promise-item {
  padding: 10px 16px 0;
  text-align: center;
}

.replica-line-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #5e9c4f;
}

.replica-line-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.replica-promise-item h3,
.replica-category-card h3 {
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.replica-promise-item p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.replica-products-shell {
  width: 100%;
  padding: 34px 0 24px;
  background:
    linear-gradient(0deg, rgba(12, 53, 24, 0.88), rgba(12, 53, 24, 0.88)),
    radial-gradient(circle at top, rgba(127, 181, 108, 0.28), transparent 40%);
  text-align: center;
}

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

.replica-section-label.light,
.replica-products-shell h2,
.replica-products-copy,
.replica-category-card h3 {
  color: #fff;
}

.replica-products-copy {
  max-width: 620px;
  margin: 12px auto 18px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.replica-products-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  box-shadow: none;
}

.replica-category-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.replica-category-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 14px;
  width: max-content;
  animation: home-products-marquee 38s linear infinite;
}

.replica-category-carousel:hover .replica-category-track {
  animation-play-state: paused;
}

.replica-category-track > * {
  flex: 0 0 220px;
  min-width: 220px;
}

.replica-category-card {
  display: block;
  width: 220px;
  min-width: 220px;
  flex: 0 0 auto;
}

.replica-category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
}

.replica-category-card h3 {
  margin-top: 10px;
  font-size: 0.92rem;
}

@keyframes home-products-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.replica-trust-shell {
  padding: 24px 22px;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.replica-trust-shell h2 {
  font-size: 1.55rem;
}

.replica-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  color: #656565;
  font-size: 1.65rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .replica-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .replica-category-row,
  .replica-logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .replica-hero-frame {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(12, 57, 27, 0.84), rgba(12, 57, 27, 0.48)),
      url("../images/hero-produce.png") center/cover no-repeat;
  }

  .replica-hero-copy {
    padding: 44px 0 50px;
  }

  .replica-hero-copy h1 {
    font-size: 2.35rem;
  }

  .replica-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .replica-promise-grid,
  .replica-logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .replica-logo-strip {
    font-size: 1.05rem;
  }

  .replica-category-card {
    width: 180px;
    min-width: 180px;
  }

  .replica-category-track > * {
    flex-basis: 180px;
    min-width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .replica-category-track {
    animation: none;
  }
}

.page-hero {
  padding: 52px 0 0;
}

.page-hero-short .container,
.page-title,
.product-overview-hero,
.breadcrumb {
  position: relative;
  z-index: 1;
}

.page-hero-short {
  position: relative;
  padding-bottom: 54px;
}

.page-hero-short::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.3)),
    url("../images/hero-produce.png") center/cover;
}

.page-hero-short h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.breadcrumb span {
  margin: 0 8px;
}

.product-overview-hero {
  padding-bottom: 8px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  align-items: center;
}

.hero-banner-image {
  height: 230px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  color: var(--ink);
  min-height: 42px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}

.pill.is-active {
  color: #fff;
  background: var(--green-600);
}

.search-wrap {
  display: block;
  width: min(100%, 320px);
}

.products-grid-extended {
  grid-template-columns: repeat(4, 1fr);
}

.product-detail-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.detail-hero-image {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.detail-hero-image img {
  aspect-ratio: 1.2 / 0.85;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}

.thumb.is-active {
  border-color: var(--green-600);
}

.thumb img {
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.product-specs {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 49, 32, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-meta {
  margin: 12px 0 18px;
  color: var(--green-600);
  font-weight: 700;
}

.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.timeline-steps {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
}

.page-title {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.sustainability-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.sustainability-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.sustainability-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 46, 22, 0.92), rgba(9, 46, 22, 0.22));
}

.sustainability-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  color: #fff;
}

.sustainability-hero-overlay p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
}

.floating {
  margin-top: 50px;
}

.contact-panel {
  position: relative;
  grid-template-columns: 0.75fr 0.85fr;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(90deg, rgba(14, 80, 42, 0.98) 0%, rgba(14, 80, 42, 0.98) 56%, rgba(14, 80, 42, 0.88) 56%, rgba(14, 80, 42, 0.72) 100%);
  box-shadow: var(--shadow);
  color: #fff;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy p,
.contact-list li {
  color: rgba(255, 255, 255, 0.84);
}

.contact-copy p {
  margin: 18px 0 24px;
  max-width: 360px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
  padding: 26px;
  border-radius: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form textarea {
  margin: 14px 0 18px;
}

.contact-backdrop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 100%;
  opacity: 0.42;
}

.contact-backdrop img {
  height: 100%;
  object-fit: cover;
}

.compact-footer {
  background: #0c3119;
}

.single-line {
  padding-top: 18px;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(181, 219, 120, 0.14), transparent 24%),
    linear-gradient(180deg, #123921 0%, #0d301b 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(180px, 0.8fr));
  gap: 28px;
  padding: 34px 0 26px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-brand > img {
  display: block;
  width: min(250px, 100%);
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 32px rgba(5, 20, 10, 0.22);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-column h4 {
  margin: 6px 0 0;
  font-size: 1rem;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-column a:hover {
  color: #fff;
}

.footer-cta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-copy {
  max-width: 620px;
}

.footer-cta-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(250, 248, 243, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .product-hero-grid,
  .product-detail-grid,
  .footer-map-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-strip-grid,
  .product-grid,
  .products-grid-extended,
  .process-steps,
  .testimonial-grid,
  .timeline-steps,
  .news-grid,
  .sustainability-pillars,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-media {
    height: 460px;
  }

  .contact-backdrop {
    width: 100%;
    opacity: 0.22;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 80px;
  }

  .brand {
    width: 210px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .section-heading,
  .product-toolbar,
  .footer-newsletter,
  .footer-cta-bar,
  .footer-bottom,
  .newsletter-form,
  .stack-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-strip-grid,
  .product-grid,
  .products-grid-extended,
  .process-steps,
  .testimonial-grid,
  .timeline-steps,
  .news-grid,
  .sustainability-pillars,
  .footer-main,
  .thumb-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 360px;
  }

  .sustainability-card,
  .contact-panel {
    padding: 26px;
  }

  .contact-form {
    padding: 18px;
  }
}
