:root {
  --green-900: #0f3d2e;
  --green-800: #14543d;
  --green-700: #1f6b49;
  --green-100: #eaf4ed;
  --gold: #c9972b;
  --gold-soft: #f7e5b3;
  --red: #b41920;
  --navy: #112336;
  --earth: #806042;
  --paper: #fffaf1;
  --mist: #f5f8f2;
  --white: #ffffff;
  --ink: #17211d;
  --muted: #5e6b64;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 20px 50px rgba(17, 35, 54, 0.14);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.utility-bar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 7px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: #071710;
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-bar a {
  text-decoration: none;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  cursor: pointer;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.86;
}

.brand:focus-visible {
  outline: 3px solid rgba(201, 151, 43, 0.5);
  outline-offset: 6px;
  border-radius: var(--radius);
}

.brand img {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
}

.nav-cta {
  padding: 9px 13px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: var(--green-900);
  box-shadow: 0 10px 22px rgba(15, 61, 46, 0.18);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #f7f9f4;
  white-space: nowrap;
}

.language-option {
  min-width: 36px;
  border: 0;
  border-radius: 6px;
  padding: 7px 8px;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--red);
}

.language-option.is-active {
  color: var(--white);
  background: var(--green-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: calc(82vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("../assets/images/farm-visit.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 16, 0.96) 0%, rgba(15, 61, 46, 0.84) 48%, rgba(17, 35, 54, 0.34) 100%),
    linear-gradient(0deg, rgba(17, 35, 54, 0.46), rgba(17, 35, 54, 0.05));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 78px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}

.hero-copy-wrap {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.tag,
.panel-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 13vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-name {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.1rem, 2.3vw, 1.7rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(247, 229, 179, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 28px rgba(180, 25, 32, 0.24);
}

.btn-light {
  color: var(--green-900);
  background: var(--white);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 23, 16, 0.66);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.proof-title {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-proof div {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proof div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-proof dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.credibility-strip {
  padding: 0;
  color: var(--white);
  background: var(--green-900);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.credibility-grid div {
  min-height: 108px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.credibility-grid div:first-child {
  border-left: 0;
}

.credibility-grid strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.08rem;
  line-height: 1.2;
}

.credibility-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.highlight-band {
  padding: 0;
  background: var(--navy);
  color: var(--white);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-grid article {
  min-height: 158px;
  padding: 26px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid rgba(201, 151, 43, 0.86);
  background: var(--navy);
}

.highlight-grid article:first-child {
  border-left: 0;
}

.highlight-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-grid h2 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.highlight-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: clamp(74px, 8vw, 108px) 0;
}

.section:nth-of-type(even) {
  background: var(--mist);
}

.two-col,
.operations-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.intro h2,
.section-head h2,
.innovation h2,
.contact h2,
.partners h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p,
.section-head p,
.innovation p,
.contact p,
.partners p {
  color: var(--muted);
  font-size: 1.02rem;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.model-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: -18px 0 28px;
}

.model-summary div {
  padding: 22px;
  border: 1px solid rgba(15, 61, 46, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 229, 179, 0.28), rgba(255, 255, 255, 0) 68%),
    var(--white);
}

.model-summary strong {
  display: block;
  color: var(--green-900);
  font-size: 1.04rem;
}

.model-summary span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.94rem;
}

.fact-row div {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--green-100);
}

.fact-row strong {
  display: block;
  color: var(--green-900);
  font-size: 1.35rem;
}

.fact-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.vision-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0 0 28px;
  color: var(--green-900);
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
}

.check-list,
.info-card ul,
.leader-grid p {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.info-card li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  max-width: none;
  gap: 28px;
  align-items: end;
}

.section-head.split > p {
  margin: 0;
}

.process-grid,
.cards.three,
.leader-grid,
.media-grid,
.product-grid,
.farm-grid {
  display: grid;
  gap: 18px;
}

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

.process-grid article,
.info-card,
.leader-grid article,
.media-card,
.product-card,
.farm-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 35, 54, 0.06);
}

.process-grid article {
  padding: 26px;
}

.model-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: invert(18%) sepia(44%) saturate(771%) hue-rotate(109deg) brightness(92%) contrast(94%);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.24;
}

.process-grid p,
.product-card p,
.farm-card p,
.media-card p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  grid-column: span 3;
}

.featured-product {
  grid-column: span 6;
  border-top: 4px solid var(--gold);
}

.product-media {
  display: block;
  margin: 0;
  height: 260px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(234, 244, 237, 0.82), rgba(255, 250, 241, 0.9)),
    var(--mist);
}

.featured-product .product-media {
  height: 360px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-content {
  flex: 1;
  padding: 22px;
}

.featured-product .product-content {
  padding: 26px;
}

.future-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.future-row strong,
.future-row span {
  padding: 10px 14px;
  border-radius: var(--radius);
}

.future-row strong {
  color: var(--white);
  background: var(--green-900);
}

.future-row span {
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 700;
}

.innovation {
  background: var(--paper);
}

.image-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

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

.info-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

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

.card-label {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-900);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-thickness 160ms ease, transform 160ms ease;
}

.info-card a:hover,
.info-card a:focus-visible {
  color: var(--red);
  text-decoration-thickness: 2.5px;
  transform: translateX(2px);
}

.info-card a:focus-visible {
  outline: 3px solid rgba(201, 151, 43, 0.45);
  outline-offset: 5px;
  border-radius: 4px;
}

.accent-card {
  color: var(--white);
  background: var(--green-900);
}

.accent-card h3,
.accent-card .card-intro,
.accent-card li,
.accent-card .card-label,
.accent-card a {
  color: var(--white);
}

.accent-card a:hover,
.accent-card a:focus-visible {
  color: var(--gold-soft);
}

.partners {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 151, 43, 0.12), rgba(180, 25, 32, 0.1)),
    var(--green-900) !important;
}

.partners h2,
.partners p {
  color: var(--white);
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.partner-strip span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.operations-grid {
  grid-template-columns: 1fr 0.75fr;
}

.image-frame.large img {
  height: 520px;
}

.address-stack {
  display: grid;
  gap: 18px;
}

.address-stack article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.address-stack p {
  margin: 0;
  color: var(--muted);
}

.farm-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.farm-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
}

.farm-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.farm-card div {
  padding: 24px;
}

.farm-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--green-900);
}

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

.leader-grid article {
  min-height: 150px;
  padding: 22px;
  border-top: 4px solid var(--gold);
}

.leader-grid p {
  color: var(--muted);
}

.recognition {
  background: #f8f6ef;
}

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

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.media-card h3,
.media-card p {
  padding-inline: 22px;
}

.media-card h3 {
  margin-top: 22px;
}

.media-card p {
  padding-bottom: 24px;
}

.certificate-section {
  margin-top: clamp(42px, 6vw, 72px);
  min-width: 0;
}

.certificate-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.certificate-header .section-kicker {
  margin-bottom: 8px;
}

.certificate-header h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.certificate-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.certificate-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.certificate-arrow:hover,
.certificate-arrow:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.certificate-arrow:disabled {
  cursor: default;
  opacity: 0.38;
}

.certificate-rail {
  display: flex;
  gap: 18px;
  max-width: 100%;
  padding: 2px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(17, 35, 54, 0.12);
  scrollbar-width: thin;
}

.certificate-rail:focus-visible {
  outline: 3px solid rgba(194, 146, 43, 0.45);
  outline-offset: 4px;
}

.certificate-card {
  display: flex;
  flex: 0 0 clamp(300px, 33vw, 380px);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 35, 54, 0.06);
}

.certificate-media {
  display: flex;
  width: 100%;
  height: 260px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 242, 0.96)),
    var(--white);
}

.certificate-preview {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 14px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.certificate-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.certificate-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
}

.certificate-year {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-content h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.certificate-description {
  margin: 0 0 20px;
  color: var(--muted);
}

.certificate-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.certificate-noscript {
  margin-top: 16px;
}

.certificate-noscript .certificate-card {
  flex: 0 0 clamp(280px, 32vw, 360px);
}

.contact {
  background: var(--navy) !important;
  color: var(--white);
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact-grid {
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.contact-paths span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-lead {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78) !important;
}

.contact-list a {
  width: fit-content;
  color: var(--gold-soft);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-link {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--navy) !important;
  background: var(--gold);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-800) !important;
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  max-width: calc(100vw - 32px);
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  box-shadow: 0 18px 42px rgba(7, 23, 16, 0.26);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(7, 23, 16, 0.34);
}

.floating-contact:focus-visible {
  outline: 3px solid rgba(201, 151, 43, 0.58);
  outline-offset: 4px;
}

.floating-contact__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--gold-soft);
}

.floating-contact__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-contact__copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.floating-contact__text {
  font-size: 0.95rem;
  font-weight: 900;
}

.floating-contact__subtext {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(clamp(16px, 3vw, 28px) + 76px);
  z-index: 79;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(17, 35, 54, 0.16);
  border-radius: 999px;
  color: var(--green-900);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 23, 16, 0.18);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 18px 38px rgba(7, 23, 16, 0.26);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(201, 151, 43, 0.58);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 1ms linear, visibility 1ms linear;
  }
}

.site-footer {
  padding: 38px 0;
  background: #071710;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.site-footer img {
  width: 155px;
  margin-bottom: 12px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-meta {
  color: var(--gold-soft);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .highlight-grid,
  .process-grid,
  .credibility-grid,
  .leader-grid,
  .model-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .media-grid,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .product-card,
  .featured-product {
    grid-column: auto;
  }

  .product-media,
  .featured-product .product-media,
  .media-card img {
    height: 320px;
  }

  .two-col,
  .hero-grid,
  .operations-grid,
  .contact-grid,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: 560px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .certificate-card {
    flex-basis: 340px;
  }

  .certificate-media {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
    margin-top: 8px;
    padding: 8px;
    width: 100%;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 8px 12px 8px 9px;
    gap: 9px;
  }

  .floating-contact__icon {
    width: 34px;
    height: 34px;
  }

  .floating-contact__icon svg {
    width: 20px;
    height: 20px;
  }

  .floating-contact__text {
    font-size: 0.88rem;
  }

  .floating-contact__subtext {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
}

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

  .utility-bar {
    display: none;
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
    margin-top: 8px;
    padding: 8px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    background-position: 38% center;
  }

  .hero-inner {
    padding: 58px 0 46px;
  }

  .hero-proof {
    max-width: none;
  }

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

  .btn {
    width: 100%;
  }

  .highlight-grid,
  .process-grid,
  .credibility-grid,
  .farm-grid,
  .fact-row,
  .model-summary {
    grid-template-columns: 1fr;
  }

  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .leader-grid article {
    min-height: auto;
    padding: 14px;
    border-top-width: 3px;
  }

  .leader-grid h3 {
    margin-bottom: 7px;
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .leader-grid p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.36;
  }

  .credibility-grid div,
  .highlight-grid article {
    border-left: 0;
  }

  .credibility-grid div {
    min-height: auto;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .credibility-grid div:first-child {
    border-top: 0;
  }

  .highlight-grid article {
    min-height: auto;
    padding: 22px 0;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-tags {
    margin-top: 20px;
  }

  .hero-tags span {
    font-size: 0.8rem;
  }

  .image-frame img,
  .image-frame.large img,
  .media-card img {
    height: 260px;
  }

  .product-media,
  .featured-product .product-media {
    height: 250px;
  }

  .featured-product .product-content,
  .product-content {
    padding: 20px;
  }

  .farm-card {
    grid-template-columns: 1fr;
  }

  .farm-card img {
    height: 220px;
  }

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

  .certificate-header {
    align-items: start;
  }

  .certificate-controls {
    display: none;
  }

  .certificate-card {
    flex-basis: min(82vw, 330px);
  }

  .certificate-media {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .leader-grid article {
    min-height: auto;
    padding: 14px;
    border-top-width: 3px;
  }

  .leader-grid h3 {
    margin-bottom: 7px;
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .leader-grid p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.36;
  }
}

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

  .hero-name {
    font-size: 1.02rem;
  }

  .intro h2,
  .section-head h2,
  .innovation h2,
  .contact h2,
  .partners h2 {
    font-size: 1.82rem;
  }

  .vision-panel,
  .info-card,
  .process-grid article,
  .model-summary div,
  .contact-form {
    padding: 20px;
  }

  .hero-proof dd {
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .leader-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
