:root {
  --green-900: #123524;
  --green-850: #123524;
  --green-800: #1b5e20;
  --green-700: #1b5e20;
  --green-100: #e8f1e9;
  --gold-500: #f0a500;
  --gold-100: #fdf3dc;
  --gold: #f0a500;
  --gold-700: #d99100;
  --cream: #faf8f2;
  --white: #ffffff;
  --ink: #223027;
  --muted: #53645b;
  --line: #ded8cc;
  --shadow: 0 12px 28px rgba(19, 45, 31, 0.14);
  --soft-shadow: 0 8px 22px rgba(30, 47, 36, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 26px 26px, rgba(0, 91, 42, 0.035) 1.5px, transparent 1.5px) 0 0 / 28px 28px,
    linear-gradient(180deg, #fff 0%, var(--cream) 34%, #fff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.35em;
  height: 1.35em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon-small {
  width: 1.05em;
  height: 1.05em;
}

.hand-icon-asset {
  position: relative;
  width: 1.35em;
  height: 1.35em;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  vertical-align: middle;
}

.hand-icon-asset img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 155%;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.mosaic-badge:has(.hand-icon-asset),
.hero-badge:has(.hand-icon-asset),
.cta-mark:has(.hand-icon-asset),
.integrated-system-hub:has(.hand-icon-asset) {
  overflow: hidden;
}

.mosaic-badge .hand-icon-asset,
.hero-badge .hand-icon-asset,
.cta-mark .hand-icon-asset,
.integrated-system-hub .hand-icon-asset {
  width: 100%;
  height: 100%;
}

.inner-stats .stat-card > .hand-icon-asset {
  width: 48px;
  height: 48px;
}

.shell {
  width: min(2200px, calc(100% - clamp(28px, 4vw, 96px)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 262px;
}

.brand-logo {
  display: block;
  width: 112px;
  height: 88px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-mark {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: inset 0 0 0 5px #fff;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 18px 7px 8px;
  border-radius: 50% 50% 45% 45%;
  border-bottom: 12px solid var(--green-800);
  transform: rotate(-5deg);
}

.brand-sun {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
}

.brand-hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 24px;
  background:
    radial-gradient(70px 34px at 17px 22px, #0b6834 0 48%, transparent 50%),
    radial-gradient(70px 34px at 48px 20px, #1a7e3a 0 48%, transparent 50%);
}

.brand-leaf {
  position: absolute;
  right: 10px;
  bottom: 16px;
  width: 29px;
  height: 16px;
  border-radius: 100% 0;
  background: #5a8d2c;
  transform: rotate(-22deg);
  box-shadow: -16px 8px 0 -2px #0b6734;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--green-850);
  line-height: 1;
}

.brand-text span {
  font-size: 2.23rem;
  font-weight: 800;
}

.brand-text small {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 0.97rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 39px 0 32px;
}

.main-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after,
.nav-dropdown-toggle.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  position: relative;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 39px 0 32px;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
}

.nav-dropdown-toggle .icon {
  width: 0.88rem;
  height: 0.88rem;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle .icon,
.nav-dropdown:hover .nav-dropdown-toggle .icon {
  transform: rotate(-90deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  z-index: 30;
  width: 298px;
  display: grid;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(15, 43, 27, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.main-nav .nav-dropdown-menu a {
  padding: 11px 12px;
  color: #193126;
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.25;
}

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

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a.active {
  color: var(--green-850);
  background: #f5faf3;
}

.header-cta {
  margin-left: 18px;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher::before,
.language-switcher::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.language-switcher::before {
  content: "\1F310";
  inset-inline-start: 10px;
  font-size: .9rem;
}

.language-switcher::after {
  content: "\25BE";
  inset-inline-end: 9px;
  color: var(--green-850);
  font-size: .68rem;
}

.language-switcher select {
  width: 104px;
  min-height: 40px;
  appearance: none;
  padding: 0 24px 0 31px;
  border: 1px solid #cad8cc;
  border-radius: 999px;
  background: #fff;
  color: var(--green-850);
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher select:focus-visible {
  outline: 3px solid rgba(244, 171, 0, .28);
  outline-offset: 2px;
}

html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .main-nav { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .header-cta { margin-right: 18px; margin-left: 0; }
html[dir="rtl"] .language-switcher select { padding: 0 31px 0 24px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-850);
  place-items: center;
}

.btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.btn-green {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-700);
}

.btn-gold {
  color: #173019;
  background: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  color: var(--green-850);
  background: #fff;
  border-color: var(--green-850);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 0 0 18px;
}

.hero-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: 540px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--green-850);
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy p {
  max-width: 505px;
  margin: 0 0 29px;
  color: #203129;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-mosaic {
  position: relative;
  height: 470px;
  margin-left: -28px;
  margin-right: -62px;
  overflow: hidden;
  border-radius: 46% 0 0 46% / 55% 0 0 55%;
}

.mosaic-tile {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 6px solid #fff;
  background: var(--green-100);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.mosaic-tile img {
  height: 100%;
  object-fit: cover;
}

.tile-aqua {
  left: 0;
  top: -10px;
  width: 402px;
  height: 292px;
  clip-path: polygon(22% 0, 100% 0, 88% 100%, 0 100%);
}

.tile-aqua img {
  object-position: center;
}

.tile-poultry {
  left: 360px;
  top: -7px;
  width: 218px;
  height: 205px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.tile-cattle-top {
  left: 552px;
  top: -4px;
  width: 260px;
  height: 188px;
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 0 100%);
}

.tile-cattle-low {
  left: 132px;
  top: 260px;
  width: 334px;
  height: 218px;
  clip-path: polygon(16% 0, 100% 0, 92% 100%, 0 100%);
}

.tile-pigs {
  left: 447px;
  top: 190px;
  width: 244px;
  height: 288px;
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
}

.tile-palm {
  left: 668px;
  top: 132px;
  width: 222px;
  height: 346px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.tile-palm img {
  object-position: 48% center;
}

.mosaic-badge {
  position: absolute;
  left: 372px;
  top: 182px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 9px solid var(--gold);
  border-radius: 50%;
  background: var(--green-800);
  box-shadow: 0 0 0 8px #fff, 0 8px 25px rgba(0, 0, 0, 0.22);
}

.mosaic-badge .icon {
  width: 58px;
  height: 58px;
  stroke-width: 1.8;
}

/* Keep the homepage collage flush with the window on wide screens. */
@media (min-width: 1221px) {
  .hero-mosaic {
    margin-right: calc((100vw - min(2200px, calc(100vw - clamp(28px, 4vw, 96px)))) / -2);
  }

  .tile-aqua {
    width: 45.17%;
  }

  .tile-poultry {
    left: 40.45%;
    width: 24.49%;
  }

  .tile-cattle-top {
    left: 62.02%;
    width: 29.21%;
  }

  .tile-cattle-low {
    left: 14.83%;
    width: 37.53%;
  }

  .tile-pigs {
    left: 50.22%;
    width: 27.42%;
  }

  .tile-palm {
    left: 75.06%;
    width: 24.94%;
  }

  .mosaic-badge {
    left: 41.8%;
  }
}

.stats-panel {
  position: relative;
  z-index: 3;
  min-height: 113px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  margin-top: 0;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.stat-card {
  min-height: 74px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  column-gap: 8px;
  padding: 0 15px;
  border-right: 2px solid var(--gold);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: span 2;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 68% 28%, #118548, var(--green-850));
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.stat-icon .icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.7;
}

.stat-card strong {
  color: var(--gold);
  font-size: 2.45rem;
  line-height: 1;
}

.stat-card small {
  color: #111c16;
  font-size: 0.73rem;
  line-height: 1.14;
  text-transform: uppercase;
  font-weight: 600;
}

.section-pad {
  padding: 34px 0 26px;
}

.about {
  display: grid;
  grid-template-columns: 365px 1fr;
  gap: 58px;
  align-items: stretch;
}

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

.about-copy h2 {
  margin: 0 0 16px;
  color: var(--green-850);
  font-size: 2.35rem;
  line-height: 1.03;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #2e3d35;
  font-size: 0.95rem;
  line-height: 1.55;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.impact-card span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  border: 1px solid #c7d3c8;
  border-radius: 50%;
  background: #f8faf5;
  margin-bottom: 17px;
}

.impact-card .icon {
  width: 45px;
  height: 45px;
  stroke-width: 1.8;
}

.impact-card h3 {
  min-height: 43px;
  margin: 0 0 9px;
  color: var(--green-850);
  font-size: 1.02rem;
  line-height: 1.05;
}

.impact-card p {
  margin: 0;
  color: #25332c;
  font-size: 0.82rem;
  line-height: 1.35;
}

.impact-card::after {
  content: "";
  width: 45px;
  height: 3px;
  margin-top: auto;
  background: var(--gold);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 0 18px;
}

.section-title h2 {
  margin: 0;
  color: var(--green-850);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title span {
  height: 3px;
  background: var(--green-850);
}

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

.pillar-card {
  position: relative;
  min-height: 238px;
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 14px;
  padding: 58px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.pillar-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.33rem;
  font-weight: 800;
  background: var(--gold);
  border-radius: 50%;
}

.pillar-body h3 {
  min-height: 64px;
  margin: 0 0 13px;
  color: #0a2214;
  font-size: 0.98rem;
  line-height: 1.13;
}

.pillar-body p {
  margin: 0;
  color: #293832;
  font-size: 0.78rem;
  line-height: 1.45;
}

.pillar-media {
  align-self: stretch;
  min-height: 132px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--green-100);
}

.pillar-media img {
  height: 100%;
  object-fit: cover;
}

.pillar-media.duo {
  display: grid;
  gap: 3px;
}

.pillar-media.duo img {
  min-height: 0;
}

.operations {
  padding-top: 32px;
}

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

.operation-card {
  position: relative;
  min-height: 305px;
  padding: 0;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: 12px;
  background: var(--green-850);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.operation-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
  z-index: -2;
}

.operation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 31, 18, 0.54) 48%, rgba(0, 43, 24, 0.94) 100%);
  z-index: -1;
}

.operation-card:hover img,
.operation-card:focus-visible img {
  transform: scale(1.06);
}

.operation-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.operation-icon {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: #fff;
  border-radius: 50%;
}

.operation-icon .icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.operation-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 68px;
}

.operation-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.43rem;
  line-height: 1.05;
}

.operation-copy small {
  display: block;
  max-width: 260px;
  font-size: 0.86rem;
  line-height: 1.27;
}

.operation-metric {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  background: rgba(0, 53, 30, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.operation-metric b {
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
}

.operation-metric small {
  color: #fff;
  font-size: 0.78rem;
}

.operation-metric.split {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px;
}

.investment {
  padding-top: 30px;
}

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

.priority-grid article {
  min-height: 170px;
  padding: 3px 23px 0;
  text-align: center;
  border-right: 1px dashed var(--gold);
}

.priority-grid article:last-child {
  border-right: 0;
}

.priority-grid .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  color: var(--green-850);
  stroke-width: 1.7;
}

.priority-grid h3 {
  min-height: 34px;
  margin: 0 0 7px;
  color: var(--green-850);
  font-size: 0.93rem;
  line-height: 1.06;
}

.priority-grid p {
  margin: 0;
  color: #1e2e26;
  font-size: 0.78rem;
  line-height: 1.35;
}

.values {
  padding-top: 20px;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.values-strip article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-right: 1px dashed var(--gold);
}

.values-strip article:last-child {
  border-right: 0;
}

.values-strip span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--green-800);
}

.values-strip .icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.7;
}

.values-strip h3 {
  margin: 0 0 2px;
  color: #122319;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.values-strip p {
  margin: 0;
  color: #2a3a31;
  font-size: 0.68rem;
  line-height: 1.22;
}

.cta-band {
  position: relative;
  min-height: 140px;
  display: grid;
  grid-template-columns: 100px 1fr 330px;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  margin-bottom: 26px;
  padding: 22px 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 67, 34, 0.95), rgba(0, 78, 39, 0.9)),
    url("assets/gallery/69c8fd0b2bef6_1774779659.jpg") center / cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 6px solid var(--gold);
  border-radius: 50%;
  background: var(--green-850);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9);
}

.cta-mark .icon {
  width: 54px;
  height: 54px;
  stroke-width: 1.8;
}

.cta-copy h2 {
  margin: 0 0 4px;
  font-size: 2.1rem;
  line-height: 1.1;
}

.cta-copy p,
.cta-actions p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.cta-actions a:not(.btn) {
  color: var(--gold);
  font-weight: 800;
}

.footer {
  color: #fff;
  background: linear-gradient(180deg, #006334, #004922);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.58fr 0.78fr 0.85fr 1.28fr 1.25fr;
  gap: 42px;
  padding: 31px 0 25px;
}

.footer-grid section {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-grid section:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer .brand {
  min-width: 0;
  margin-bottom: 14px;
}

.footer .brand-logo {
  width: 142px;
  height: 118px;
  padding: 3px;
  background: #fff;
  border-radius: 14px;
}

.footer .brand-mark {
  width: 58px;
  height: 58px;
}

.footer .brand-text span {
  color: #fff;
  font-size: 1.58rem;
}

.footer .brand-text small {
  color: #fff;
  font-size: 0.82rem;
}

.footer p,
.footer a {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.79rem;
  line-height: 1.38;
}

.footer h2 {
  margin: 5px 0 15px;
  color: #fff;
  font-size: 0.83rem;
  text-transform: uppercase;
}

.footer section > a,
.footer section > p {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer section .icon {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 11px;
  margin-top: auto;
}

.social-links a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--green-850);
  font-size: 0.72rem;
  font-weight: 800;
  background: #fff;
  border-radius: 50%;
}

.newsletter-form {
  width: 100%;
  display: grid;
  gap: 9px;
}

.newsletter-form input {
  width: 100%;
  min-height: 37px;
  border: 0;
  border-radius: 5px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
}

.newsletter-form .btn {
  min-height: 37px;
  justify-self: start;
  padding: 0 17px;
  font-size: 0.78rem;
}

.form-note {
  min-height: 18px;
  color: var(--gold) !important;
}

.footer-bottom {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 0.75rem;
}

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

.operation-modal {
  width: min(760px, calc(100% - 36px));
  padding: 0;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.operation-modal::backdrop {
  background: rgba(0, 38, 19, 0.62);
  backdrop-filter: blur(3px);
}

.operation-modal img {
  height: 310px;
  object-fit: cover;
}

.modal-content {
  padding: 26px 28px 30px;
}

.modal-content h2 {
  margin: 0 0 10px;
  color: var(--green-850);
  font-size: 2rem;
}

.modal-content p {
  margin: 0 0 20px;
  color: #2b3a31;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  color: var(--green-850);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1.8rem;
  line-height: 1;
}

.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;
}

@media (max-width: 1220px) {
  .shell {
    width: min(1100px, calc(100% - 48px));
  }

  .nav-shell {
    gap: 22px;
  }

  .main-nav {
    gap: 22px;
  }

  .header-cta {
    padding: 0 15px;
  }

  .hero-grid {
    grid-template-columns: 450px minmax(0, 1fr);
  }

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

  .hero-mosaic {
    margin-left: -14px;
    margin-right: -120px;
    transform: scale(0.92);
    transform-origin: left center;
  }

  .stats-panel,
  .impact-grid,
  .pillar-grid,
  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2n) {
    border-right: 0;
  }

  .stat-card {
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  .stat-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

  .priority-grid article:nth-child(3n),
  .values-strip article:nth-child(3n) {
    border-right: 0;
  }

  .priority-grid article {
    border-bottom: 1px dashed var(--gold);
    padding-bottom: 22px;
  }

  .priority-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

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

  .footer-grid section:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    min-height: 84px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand-text span {
    font-size: 1.82rem;
  }

  .brand-text small {
    font-size: 0.88rem;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #f0ece2;
  }

  .main-nav a::after,
  .nav-dropdown-toggle::after {
    bottom: 8px;
    right: auto;
    width: 50px;
  }

  .nav-dropdown {
    border-bottom: 1px solid #f0ece2;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 0.97rem;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: height 180ms ease, padding 180ms ease;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    padding: 0 0 10px 12px !important;
  }

  .main-nav .nav-dropdown-menu a {
    padding: 10px 12px;
    border-bottom: 0;
    font-size: 0.86rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: 3rem;
  }

  .hero-mosaic {
    width: 820px;
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .cta-band {
    grid-template-columns: 82px 1fr;
  }

  .cta-actions {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 640px);
  }

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

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-mosaic {
    width: 100%;
    max-width: 100%;
    height: 420px;
    border-radius: 28px;
  }

  .tile-aqua {
    left: 0;
    top: 0;
    width: 57%;
    height: 45%;
  }

  .tile-poultry {
    left: 50%;
    top: 0;
    width: 29%;
    height: 34%;
  }

  .tile-cattle-top {
    left: 73%;
    top: 0;
    width: 28%;
    height: 33%;
  }

  .tile-cattle-low {
    left: 0;
    top: 42%;
    width: 51%;
    height: 58%;
  }

  .tile-pigs {
    left: 45%;
    top: 32%;
    width: 31%;
    height: 68%;
  }

  .tile-palm {
    left: 70%;
    top: 28%;
    width: 31%;
    height: 72%;
  }

  .mosaic-badge {
    left: 44%;
    top: 35%;
    width: 88px;
    height: 88px;
  }

  .mosaic-badge .icon {
    width: 42px;
    height: 42px;
  }

  .stats-panel,
  .impact-grid,
  .pillar-grid,
  .operations-grid,
  .priority-grid,
  .values-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .stat-card:nth-child(2n) {
    border-right: 0;
  }

  .stat-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .section-title {
    gap: 12px;
  }

  .section-title h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .pillar-card {
    grid-template-columns: 1fr 125px;
  }

  .priority-grid article,
  .priority-grid article:nth-child(3n),
  .values-strip article,
  .values-strip article:nth-child(3n),
  .footer-grid section,
  .footer-grid section:nth-child(2n) {
    border-right: 0;
  }

  .priority-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px dashed var(--gold);
  }

  .priority-grid article:last-child {
    border-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 20px;
  }

  .cta-actions {
    grid-column: auto;
  }

  .cta-copy h2 {
    font-size: 1.75rem;
  }

  .footer-grid section {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .footer-grid section:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    padding: 14px 0;
  }
}

@media (max-width: 500px) {
  .brand-text span {
    font-size: 1.43rem;
  }

  .brand-text small {
    font-size: 0.69rem;
  }

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

  .hero-mosaic {
    height: 340px;
  }

  .stat-card {
    grid-template-columns: 62px 1fr;
  }

  .stat-icon {
    width: 58px;
    height: 58px;
  }

  .stat-icon .icon {
    width: 34px;
    height: 34px;
  }

  .stat-card strong {
    font-size: 2rem;
  }

  .about-copy h2 {
    font-size: 2rem;
  }

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

  .pillar-media {
    height: 170px;
  }

  .operation-card {
    min-height: 340px;
  }
}

/* ======================================================================
   MUGABO 2026 inner-page system
   Shared across every page; the home page keeps its established skeleton.
   ====================================================================== */

::selection { background: var(--gold-500); color: var(--green-900); }
html, body { max-width: 100%; overflow-x: clip; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-700); border: 3px solid var(--cream); border-radius: 999px; }
[hidden] { display: none !important; }
select, textarea { font: inherit; }
textarea { resize: vertical; min-height: 120px; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.scroll-progress { position: absolute; left: 0; bottom: -2px; width: 0; height: 3px; background: var(--gold-500); z-index: 30; }
.site-header.scrolled { background: rgba(255,255,255,.985); }
.site-header .nav-shell { width: min(2200px, calc(100% - clamp(24px, 3vw, 72px))); gap: 18px; }
.site-header .brand { min-width: 116px; }
.site-header .brand-mark { width: 55px; height: 55px; }
.site-header .brand-text span { font-size: 1.75rem; }
.site-header .brand-text small { font-size: .88rem; letter-spacing: .18em; }
.site-header .main-nav { gap: 17px; font-size: .8rem; white-space: nowrap; }
.site-header .main-nav > a { padding-inline: 1px; }
.nav-parent { display: flex; align-items: center; position: relative; }
.nav-parent > a { padding-right: 3px !important; }
.nav-parent > button { border: 0; background: transparent; padding: 2px; color: var(--green-700); }
.nav-parent > button .icon { width: .85em; height: .85em; transition: transform .25s ease; }
.nav-dropdown:hover .nav-parent > button .icon,
.nav-dropdown.open .nav-parent > button .icon { transform: rotate(180deg); }
.nav-dropdown.current .nav-parent > a::after { transform: scaleX(1); }
.main-nav .nav-dropdown-menu { top: 82px; min-width: 250px; border: 1px solid #e3e8e2; border-radius: 14px; padding: 10px; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { transform: translateY(0); }
.main-nav .nav-dropdown-menu a { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 9px; color: var(--green-700); }
.main-nav .nav-dropdown-menu a .icon { width: 1em; color: var(--gold-500); opacity: 0; transform: translateX(-5px); transition: .2s ease; }
.main-nav .nav-dropdown-menu a:hover .icon { opacity: 1; transform: translateX(0); }
.site-header .header-cta { padding: 14px 17px; font-size: .78rem; white-space: nowrap; }

.inner-hero { background: #fff; overflow: hidden; border-bottom: 1px solid #e8ece7; }
.inner-hero-grid { min-height: 510px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; }
.inner-hero-copy { align-self: center; max-width: 610px; padding: 55px 38px 55px 0; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: .76rem; color: #65746b; margin-bottom: 28px; }
.breadcrumbs span:nth-child(even) { color: var(--gold-500); font-weight: 800; }
.breadcrumbs a:hover { color: var(--green-700); }
.eyebrow { color: var(--gold-500); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.inner-hero h1 { margin: 8px 0 18px; color: var(--green-700); font-size: clamp(2.8rem,4.3vw,5rem); line-height: 1.06; letter-spacing: -.045em; }
.inner-hero h1 span { color: var(--gold-500); }
.inner-hero-copy > p:not(.eyebrow) { max-width: 570px; font-size: 1rem; line-height: 1.72; color: #506057; }
.inner-hero .hero-actions { justify-content: flex-start; flex-wrap: wrap; }
.inner-hero-media { position: relative; min-height: 510px; margin-right: calc((100vw - min(2200px, calc(100vw - clamp(24px, 3vw, 72px)))) / -2); overflow: hidden; clip-path: polygon(15% 0,100% 0,100% 100%,0 100%); background: var(--green-100); }
.hero-slice { position: absolute; margin: 0; overflow: hidden; border: 4px solid #fff; }
.hero-slice img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.inner-hero-media:hover .hero-slice img { transform: scale(1.025); }
.slice-1 { inset: 0 44% 44% 9%; clip-path: polygon(17% 0,100% 0,87% 100%,0 100%); }
.slice-2 { inset: 0 0 43% 53%; clip-path: polygon(7% 0,100% 0,100% 100%,0 100%); }
.slice-3 { inset: 51% 45% 0 0; clip-path: polygon(10% 0,100% 0,87% 100%,0 100%); }
.slice-4 { inset: 47% 0 0 51%; clip-path: polygon(8% 0,100% 0,100% 100%,0 100%); }
.hero-badge { position: absolute; left: 49%; top: 48%; width: 105px; height: 105px; display: grid; place-items: center; border-radius: 50%; transform: translate(-50%,-50%); background: var(--green-700); color: #fff; border: 8px solid #fff; box-shadow: 0 0 0 5px var(--gold-500), 0 13px 30px rgba(0,0,0,.25); z-index: 4; }
.hero-badge .icon { width: 48px; height: 48px; }

.inner-stats { grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); margin-top: 26px; margin-bottom: 70px; min-height: 126px; }
.inner-stats .stat-card { display: flex; align-items: center; gap: 13px; text-align: left; }
.inner-stats .stat-card > .icon { width: 48px; height: 48px; padding: 11px; border-radius: 50%; color: #fff; background: var(--green-700); }
.inner-stats .stat-card strong { display: block; color: var(--gold-500); font-size: clamp(1.25rem,2vw,2rem); white-space: nowrap; }
.inner-stats .stat-card span { display: block; max-width: 170px; color: #66736a; font-size: .73rem; line-height: 1.35; text-transform: uppercase; }

#content { display: grid; gap: 78px; padding-bottom: 80px; }
#content > .section-title + * { margin-top: -52px; }
.section-title.ruled { display: grid; grid-template-columns: 1fr auto 1fr; grid-template-areas: "eyebrow eyebrow eyebrow" "before title after"; gap: 8px 18px; align-items: center; width: min(2200px,calc(100% - clamp(28px, 4vw, 96px))); margin: 0 auto; text-align: center; }
.section-title.ruled::before,.section-title.ruled::after { content: ""; height: 2px; background: var(--green-700); }
.section-title.ruled::before { grid-area: before; }
.section-title.ruled::after { grid-area: after; }
.section-title.ruled h2 { grid-area: title; margin: 0; color: var(--green-900); font-size: clamp(1.2rem,2.1vw,1.75rem); text-transform: uppercase; letter-spacing: .08em; }
.section-title.ruled .eyebrow { grid-area: eyebrow; margin: 0; }

.info-card,.badge-tile,.person-card,.spec-card,.opportunity-card,.product-card,.focus-card,.market-priority,.article-row,.masonry-card,.progress-card,.sdg-card,.contact-card,.accordion-item,.role-row { background: #fff; border: 1px solid #e3e8e2; border-radius: 16px; box-shadow: 0 8px 22px rgba(30,47,36,.07); transition: transform .28s ease, box-shadow .28s ease; }
.info-card:hover,.badge-tile:hover,.person-card:hover,.spec-card:hover,.opportunity-card:hover,.product-card:hover,.focus-card:hover,.market-priority:hover,.article-row:hover,.masonry-card:hover,.sdg-card:hover,.contact-card:hover { transform: translateY(-3px); box-shadow: 0 15px 34px rgba(30,47,36,.13); }
.info-card > .icon,.badge-tile > .icon,.market-priority > .icon { width: 54px; height: 54px; padding: 13px; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.info-card h3,.badge-tile h3,.market-priority h3 { color: var(--green-700); }
.info-card p { color: #607067; line-height: 1.65; font-size: .9rem; }
.icon-card-grid { display: grid; gap: 18px; }
.four-card-row { grid-template-columns: repeat(4,1fr); }
.five-impact-row,.values-row { grid-template-columns: repeat(5,1fr); }
.four-card-row .info-card,.five-impact-row .info-card,.values-row .info-card { padding: 25px; text-align: center; }
.four-card-row .info-card > .icon,.five-impact-row .info-card > .icon,.values-row .info-card > .icon { margin: 0 auto; }

.check-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 9px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; color: #47574e; font-size: .9rem; line-height: 1.55; }
.check-list .icon { width: 18px; height: 18px; color: var(--green-700); margin-top: 2px; }
.number-badge { width: 54px; height: 54px; display: inline-grid; place-items: center; border-radius: 16px; background: var(--green-700); color: #fff; font-size: 1.2rem; font-weight: 800; }

/* About — story */
.story-timeline { position: relative; padding-block: 20px; }
.story-timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--green-700),var(--gold-500)); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding: 0 55px 50px 0; text-align: right; }
.timeline-item.right { margin-left: 50%; padding: 0 0 50px 55px; text-align: left; }
.timeline-dot { position: absolute; right: -11px; top: 14px; width: 23px; height: 23px; border-radius: 50%; background: var(--gold-500); border: 6px solid #fff; box-shadow: 0 0 0 3px var(--green-700); }
.timeline-item.right .timeline-dot { left: -12px; right: auto; }
.timeline-item time { display: inline-block; margin-bottom: 8px; color: var(--gold-500); font-weight: 800; }
.timeline-card { padding: 25px; background: #fff; border: 1px solid #e3e8e2; border-radius: 16px; }
.timeline-card h3 { color: var(--green-700); margin-top: 0; }
.timeline-card p { color: #5b6961; line-height: 1.7; margin-bottom: 0; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-panel,.vision-panel { padding: 44px; border-radius: 20px; }
.mission-panel { background: var(--green-100); }
.vision-panel { background: var(--gold-100); }
.mission-vision span { color: var(--gold-500); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.mission-vision h2 { color: var(--green-700); font-size: 2rem; }

/* About — pillars */
.alternating-pillars { display: grid; gap: 34px; }
.pillar-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 410px; overflow: hidden; background: #fff; border: 1px solid #e3e8e2; border-radius: 20px; }
.pillar-row.reverse figure { order: 2; }
.pillar-row figure { margin: 0; min-height: 390px; }
.pillar-row figure img { height: 100%; object-fit: cover; }
.pillar-row > div { padding: 40px; }
.pillar-row h2 { color: var(--green-700); font-size: 2rem; }
.pillar-row p { color: #5a6961; line-height: 1.7; }
.connect-line { display: flex; gap: 9px; align-items: center; padding: 13px; border-radius: 12px; background: var(--gold-100); color: var(--green-900) !important; font-weight: 600; }
.pillar-loop { display: flex; align-items: stretch; gap: 12px; padding: 28px; border: 1px dashed var(--green-700); border-radius: 18px; background: var(--green-100); }

.flow-sequence { position: relative; }
.flow-node { flex: 1; padding: 20px; background: #fff; border: 1px solid #cfd9d0; border-radius: 14px; text-align: center; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.flow-node.in-view { border-color: var(--gold-500); background: var(--gold-100); }
.flow-node:hover { transform: scale(1.035); }
.flow-node b,.flow-node > span:first-child { color: var(--gold-500); font-weight: 800; }
.flow-node h3 { color: var(--green-700); margin: 8px 0; font-size: 1rem; }
.flow-node p { color: #66736b; font-size: .78rem; line-height: 1.5; }
.flow-arrow,.equation-sign,.dashed-arrow { align-self: center; color: var(--green-700); font-size: 1.7rem; font-weight: 800; }

/* About — people */
.leadership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.person-card { overflow: hidden; }
.person-card figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--green-100); }
.person-card figure img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.person-card:hover figure img { transform: scale(1.03); }
.person-card > div { padding: 24px; }
.person-card h3 { color: var(--green-700); margin: 0 0 4px; }
.person-card span { color: var(--gold-700); font-weight: 700; font-size: .8rem; }
.person-card p { color: #5e6d64; line-height: 1.55; font-size: .85rem; }
.person-card.compact figure { aspect-ratio: 1; }
.org-values-strip { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding: 30px; background: var(--green-900); color: #fff; border-radius: 20px; }
.org-values-strip h2 { width: 100%; margin: 0; }
.org-values-strip span { display: flex; align-items: center; gap: 7px; padding: 8px 12px; background: rgba(255,255,255,.1); border-radius: 999px; font-size: .82rem; }
.org-values-strip p { margin-bottom: 0; color: #d9e8dc; }

/* About — compliance and careers */
.badge-wall { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.badge-tile { display: grid; place-items: center; gap: 10px; padding: 28px; text-align: center; }
.badge-tile strong { color: var(--green-700); }
.badge-tile span { color: #6b786f; font-size: .75rem; }
.accordion-list { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; }
.accordion-item > button { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border: 0; background: #fff; color: var(--green-700); font-weight: 700; text-align: left; }
.accordion-item > button b { color: var(--gold-500); font-size: 1.45rem; transition: transform .25s ease; }
.accordion-item.open > button b { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > * { overflow: hidden; }
.accordion-panel p { margin: 0; padding: 0 24px 22px; color: #617067; line-height: 1.65; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.document-list { display: grid; gap: 12px; }
.document-list article { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 17px 20px; background: #fff; border: 1px solid #e3e8e2; border-radius: 14px; }
.document-list article > div { display: flex; align-items: center; gap: 12px; }
.document-list article > div > .icon { color: var(--green-700); width: 36px; height: 36px; }
.document-list span { display: grid; }
.document-list small { color: #7b867f; }
.compliance-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 32px; align-items: stretch; }
.compliance-intro > div { padding: clamp(26px,3vw,44px); border-radius: 20px; }
.compliance-intro > div:first-child { background: var(--green-900); color: #fff; }
.compliance-intro > div:last-child { background: var(--green-100); }
.compliance-intro h2 { margin-top: 7px; color: var(--gold-500); font-size: clamp(1.8rem,2.4vw,2.6rem); }
.compliance-intro > div:last-child h2 { color: var(--green-700); }
.compliance-intro p { line-height: 1.75; }
.compliance-intro > div:first-child p { color: #d9e7dc; }
.compliance-table-wrap { overflow-x: auto; border: 1px solid #dfe6df; border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(30,47,36,.08); }
.compliance-table { width: 100%; min-width: 980px; border-collapse: collapse; }
.compliance-table th,.compliance-table td { padding: 17px 18px; border-bottom: 1px solid #e3e8e2; text-align: left; vertical-align: top; font-size: .84rem; line-height: 1.55; }
.compliance-table th { background: var(--green-900); color: #fff; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.compliance-table tr:last-child td { border-bottom: 0; }
.compliance-table td:first-child { color: var(--green-700); font-weight: 800; }
.traceability-panel { padding: clamp(28px,3.5vw,52px); border-radius: 22px; background: linear-gradient(135deg,var(--green-900),var(--green-700)); color: #fff; }
.traceability-panel h2 { margin: 8px 0 12px; font-size: clamp(2rem,3vw,3.2rem); }
.traceability-panel > p { max-width: 900px; color: #d9e7dc; line-height: 1.75; }
.traceability-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; background: var(--gold-500); color: var(--green-900); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.trace-module-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 26px; }
.trace-module { padding: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; background: rgba(255,255,255,.09); }
.trace-module h3 { margin: 0 0 8px; color: var(--gold-500); font-size: 1rem; }
.trace-module p { margin: 0; color: #edf5ef; font-size: .8rem; line-height: 1.55; }
.traceability-feature { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(24px,3vw,48px); padding: clamp(28px,3.5vw,48px); border: 1px solid #dce5dd; border-radius: 22px; background: linear-gradient(135deg,#f4f9f3,#fff); box-shadow: 0 12px 30px rgba(30,47,36,.08); }
.traceability-feature h2 { margin: 8px 0 12px; color: var(--green-700); font-size: clamp(1.7rem,2.4vw,2.5rem); }
.traceability-feature p { color: #596a60; line-height: 1.7; }
.traceability-feature .check-list { margin: 0; }
.traceability-feature .buyer-evidence { grid-column: 1/-1; margin: 0; padding: 14px 17px; border-left: 4px solid var(--gold-500); border-radius: 8px; background: var(--green-900); color: #fff; }
.culture-mosaic { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 240px auto; gap: 14px; }
.culture-mosaic figure { margin: 0; border-radius: 18px; overflow: hidden; }
.culture-mosaic figure img { height: 100%; object-fit: cover; }
.culture-mosaic .wide { grid-row: 1/3; }
.culture-mosaic > div { grid-column: 2/4; padding: 27px; border-radius: 18px; background: var(--green-100); }
.culture-mosaic h2 { color: var(--green-700); }
.culture-mosaic p { line-height: 1.65; }
.role-list { display: grid; gap: 14px; }
.role-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px; }
.role-row h3 { margin: 0; color: var(--green-700); }
.role-row p { color: #6c786f; }
.hiring-flow { display: flex; gap: 13px; align-items: stretch; }

/* Operations intentional shared template */
.operation-flow { display: flex; align-items: stretch; gap: 9px; }
.operation-flow .flow-node { min-width: 0; padding-inline: 13px; }
.operation-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.spec-card { overflow: hidden; }
.spec-card figure { margin: 0; aspect-ratio: 16/10; overflow: hidden; }
.spec-card figure img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.spec-card figure img[src*="02_05_00 PM (2).jpg"] { object-position: center 28%; }
.spec-card:hover figure img { transform: scale(1.03); }
.spec-card > div { padding: 25px; }
.spec-card h3 { color: var(--green-700); font-size: 1.35rem; }
.spec-card p { color: #5e6c64; line-height: 1.6; }
.spec-card dl { display: grid; gap: 0; margin: 20px 0; border: 1px solid #e3e8e2; border-radius: 10px; overflow: hidden; }
.spec-card dl div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 11px; border-bottom: 1px solid #e3e8e2; font-size: .78rem; }
.spec-card dl div:last-child { border-bottom: 0; }
.spec-card dt { font-weight: 700; color: var(--green-700); }
.spec-card dd { margin: 0; text-align: right; color: #65736b; }
.spec-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--green-700); font-weight: 700; font-size: .82rem; }
.quality-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; padding: 40px; border-radius: 20px; background: var(--green-900); color: #fff; }
.quality-panel h2 { font-size: 2.1rem; margin: 7px 0; }
.quality-panel p { color: #d5e4d8; }
.quality-checks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quality-checks li { display: flex; gap: 9px; align-items: flex-start; }
.quality-checks .icon { color: var(--gold-500); width: 20px; height: 20px; }
.buy-supply-split { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 20px; background: var(--green-700); color: #fff; }
.buy-supply-split > div { padding: 38px; }
.buy-supply-split > div + div { background: var(--green-900); }
.buy-supply-split p { color: #d9e7dc; }
.btn.light { border-color: #fff; color: #fff; }

/* Action — food security */
.food-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 35px; align-items: center; }
.food-intro > div:first-child { padding: 25px; }
.food-intro h2 { color: var(--green-700); font-size: 2rem; }
.food-intro p { line-height: 1.7; color: #5d6b63; }
.food-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.food-pillars .info-card { padding: 25px; text-align: center; }
.food-pillars .icon { margin: auto; }
.pathway,.value-chain { display: flex; gap: 10px; align-items: stretch; }
.focus-groups { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.focus-card { overflow: hidden; }
.focus-card figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; }
.focus-card img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.focus-card:hover img { transform: scale(1.03); }
.focus-card > div { padding: 22px; }
.focus-card h3 { color: var(--green-700); }

/* Action — farming */
.farming-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tall-pillar { position: relative; padding: 25px; background: #fff; border: 1px solid #d6e0d6; border-radius: 17px; }
.tall-pillar:nth-child(2) { border-color: #f3cc79; }
.tall-pillar:nth-child(2) .number-badge { background: var(--gold-500); }
.tall-pillar h3 { display: inline; margin-left: 12px; color: var(--green-700); font-size: 1.45rem; }
.tall-pillar > p { color: #66736b; font-size: .9rem; min-height: 58px; }
.tall-pillar figure { margin: 16px 0; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.tall-pillar figure img { height: 100%; object-fit: cover; }
.outcome-box { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 17px; background: var(--green-100); border-radius: 12px; }
.outcome-box.gold { background: var(--gold-100); }
.outcome-box strong { grid-column: 1/-1; color: var(--green-700); }
.outcome-box span { display: flex; gap: 6px; font-size: .76rem; }
.system-diagram { display: grid; grid-template-columns: 1fr 280px; gap: 22px; padding: 30px; border: 1px solid #dce5dc; border-radius: 18px; }
.system-nodes { display: flex; align-items: center; gap: 9px; }
.system-nodes .flow-node .icon { width: 48px; height: 48px; color: var(--green-700); }
.loop-arrow { align-self: center; max-width: 125px; color: var(--green-700); font-size: .7rem; text-align: center; }
.system-diagram aside { padding: 22px; border-radius: 14px; background: var(--gold-100); }
.system-diagram aside h3 { color: var(--green-700); }

/* Reference-matched integrated farming loop */
.integrated-section-title h2 { font-size: clamp(1.45rem,2.4vw,2.05rem); }
.integrated-system { max-width: 1550px; }
.integrated-system-subtitle { margin: 0 0 8px; color: #4e5e54; font-size: .92rem; line-height: 1.6; text-align: center; }
.integrated-system-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(245px,.27fr); gap: 28px; align-items: center; }
.integrated-loop-stage { position: relative; min-height: 310px; }
.integrated-flow-lines { position: absolute; inset: 0; width: 100%; height: 310px; overflow: visible; z-index: 0; pointer-events: none; }
.integrated-flow-lines path { fill: none; stroke: var(--green-700); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.integrated-flow-lines marker path { fill: var(--green-700); stroke: none; }
.integrated-system-card,.integrated-benefits { position: relative; z-index: 2; border: 1.5px solid #7da38a; border-radius: 12px; background: rgba(255,255,255,.99); box-shadow: 0 6px 18px rgba(23,69,41,.06); }
.integrated-system-card { position: absolute; top: 88px; width: 28.6%; min-height: 132px; display: flex; align-items: center; padding: 18px 74px 18px 18px; }
.integrated-system-card.system-crops { left: 0; }
.integrated-system-card.system-livestock { left: 35.2%; }
.integrated-system-card.system-aquaculture { left: 70.4%; }
.integrated-system-card h3,.integrated-benefits h3 { margin: 0 0 9px; color: var(--green-700); font-size: 1rem; text-transform: uppercase; }
.integrated-system-card ul,.integrated-benefits ul { margin: 0; padding-left: 17px; color: #43534a; font-size: .76rem; line-height: 1.72; }
.integrated-system-card li::marker,.integrated-benefits li::marker { color: var(--green-700); }
.integrated-system-card.system-livestock { border-color: var(--gold-500); }
.integrated-system-card.system-livestock h3,.integrated-system-card.system-livestock li::marker { color: var(--gold-700); }
.integrated-system-icon { position: absolute; right: -28px; top: 50%; width: 78px; height: 78px; display: grid; place-items: center; overflow: hidden; border: 2px solid #74a082; border-radius: 50%; transform: translateY(-50%); background: #f7fbf6; color: var(--green-700); box-shadow: 0 0 0 7px #fff; z-index: 4; }
.system-livestock .integrated-system-icon { border-color: var(--gold-500); }
.system-icon-image { position: absolute; left: 50%; top: 50%; width: 120%; height: auto; max-width: none; display: block; object-fit: contain; object-position: center; transform: translate(-50%,-50%); }
.integrated-benefits { min-height: 188px; padding: 22px 21px; border-color: #dce3d9; background: linear-gradient(135deg,#fbfcf8,#f3f6ee); }
.integrated-benefits h3 { text-transform: none; }
.integrated-flow-label { position: absolute; z-index: 3; padding: 2px 10px; border-radius: 999px; background: #fff; color: #425249; font-size: .69rem; line-height: 1.3; white-space: nowrap; }
.label-crop-feed { left: 34%; top: 7px; transform: translateX(-50%); }
.label-manure { left: 69%; top: 7px; transform: translateX(-50%); }
.label-water { left: 22%; bottom: 2px; transform: translateX(-50%); }
.label-fish-waste { left: 72%; bottom: 2px; transform: translateX(-50%); }
.integrated-system-hub { position: absolute; left: 50%; bottom: -8px; z-index: 5; width: 70px; height: 70px; display: grid; place-items: center; border: 5px solid #fff; border-radius: 50%; transform: translateX(-50%); background: var(--green-700); color: #fff; box-shadow: 0 0 0 4px var(--gold-500),0 8px 18px rgba(0,0,0,.18); }
.integrated-system-hub .icon { width: 42px; height: 42px; }
.integrated-system-hub .hand-icon-asset { width: 100%; height: 100%; }

.farming-impact-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.farming-impact-card { min-height: 180px; display: grid; justify-items: center; align-content: start; padding: 23px 18px 20px; border: 1px solid #e0e5db; border-radius: 14px; background: #fff; box-shadow: 0 7px 20px rgba(24,65,38,.055); text-align: center; }
.impact-icon-badge { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 9px; border-radius: 50%; background: var(--green-700); color: #fff; box-shadow: 0 0 0 5px var(--green-100); }
.impact-icon-badge svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.farming-impact-card h3 { margin: 8px 0 7px; color: var(--green-700); font-size: 1rem; }
.farming-impact-card p { margin: 0; color: #56665c; font-size: .8rem; line-height: 1.55; }

/* Action — environment */
.environmental-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wide-focus { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; background: #fff; border: 1px solid #e3e8e2; border-radius: 18px; }
.wide-focus figure { margin: 0; }
.wide-focus figure img { height: 100%; object-fit: cover; }
.wide-focus > div { padding: 25px; }
.wide-focus h3 { color: var(--green-700); font-size: 1.3rem; }
.wide-focus .check-list { grid-template-columns: 1fr 1fr; }
.environment-flow { display: flex; gap: 10px; align-items: stretch; padding-bottom: 42px; }
.feedback-loop { position: absolute; left: 5%; right: 5%; bottom: 0; padding-top: 8px; border-top: 2px dashed var(--green-700); color: var(--green-700); font-size: .72rem; text-align: center; }
.matrix-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.table-scroll { overflow-x: auto; border: 1px solid #dce5dc; border-radius: 14px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th,td { padding: 13px; border-bottom: 1px solid #e4e9e4; text-align: left; font-size: .77rem; vertical-align: top; }
thead th { background: var(--green-700); color: #fff; }
tbody th { color: var(--green-700); }
.environmental-photo-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.environmental-photo-grid figure { margin: 0; overflow: hidden; border: 1px solid #e1e7e1; border-radius: 14px; background: #fff; cursor: zoom-in; }
.environmental-photo-grid img { aspect-ratio: 4/3; object-fit: cover; }
.environmental-photo-grid figcaption { display: grid; gap: 5px; padding: 12px; }
.environmental-photo-grid strong { color: var(--green-700); font-size: .84rem; }
.environmental-photo-grid span { color: #68766d; font-size: .68rem; line-height: 1.5; }

/* Action — markets */
.value-chain .flow-node > .icon { width: 45px; height: 45px; color: var(--green-700); }
.mixed-market-band { display: grid; grid-template-columns: 1.15fr .7fr 1.15fr; gap: 16px; }
.photo-list { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: #fff; border: 1px solid #e1e7e1; border-radius: 16px; }
.photo-list.reverse { grid-template-columns: 1.2fr .8fr; }
.photo-list.reverse img { order: 2; }
.photo-list img { height: 100%; object-fit: cover; }
.photo-list div,.list-card { padding: 23px; }
.photo-list h3,.list-card h3 { color: var(--green-700); }
.list-card { display: grid; align-content: start; gap: 13px; background: var(--green-100); border-radius: 16px; }
.list-card span { display: flex; gap: 9px; align-items: center; color: var(--green-700); font-weight: 700; font-size: .82rem; }
.market-priority-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.market-priority { padding: 20px; }
.market-priority figure { margin: 15px -20px; aspect-ratio: 16/8; overflow: hidden; }
.market-priority figure img { height: 100%; object-fit: cover; }
.market-priority p { color: #617067; font-size: .8rem; line-height: 1.6; }
.land-resource { display: grid; grid-template-columns: 1.15fr 1fr .85fr; gap: 18px; }
.land-resource > * { border-radius: 16px; overflow: hidden; }
.land-resource figure { margin: 0; }
.land-resource figure img { height: 100%; object-fit: cover; }
.practice-panel,.outcomes-dark { padding: 25px; border: 1px solid #e1e7e1; }
.practice-panel h3,.outcomes-dark h3 { color: var(--green-700); }
.outcomes-dark { background: var(--green-900); color: #fff; }
.outcomes-dark h3 { color: #fff; }
.outcomes-dark .check-list li { color: #fff; }
.outcomes-dark .check-list .icon { color: var(--gold-500); }
.enablers-strip { display: grid; grid-template-columns: 1fr 270px; gap: 20px; }
.enablers-strip > div { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; padding: 20px; border: 1px solid #e1e7e1; border-radius: 16px; }
.enablers-strip span { display: grid; justify-items: center; gap: 8px; text-align: center; color: var(--green-700); font-size: .75rem; }
.enablers-strip aside { padding: 24px; border-radius: 16px; background: var(--green-900); color: #fff; }
.enablers-strip aside a { color: var(--gold-500); font-weight: 700; }

/* Action — resilience */
.resilience-banner { display: grid; grid-template-columns: 2fr repeat(4,.45fr); align-items: center; gap: 12px; padding: 24px; border: 1px solid #dce4dc; border-radius: 16px; background: #fff; }
.resilience-banner > div { display: flex; align-items: center; gap: 15px; }
.resilience-banner > div > .icon { width: 58px; height: 58px; padding: 13px; border-radius: 50%; background: var(--green-700); color: #fff; }
.resilience-banner p { margin: 5px 0 0; color: #627168; font-size: .82rem; }
.resilience-banner > span { display: grid; justify-items: center; gap: 8px; color: var(--green-700); border-left: 1px solid #d9dfd9; }
.resilience-twins { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.resilience-card { padding: 28px; border: 1px solid #dce5dc; border-radius: 18px; background: #fff; }
.resilience-card.gold { border-color: #f0cc7f; }
.resilience-card.gold .number-badge { background: var(--gold-500); }
.resilience-card h2 { color: var(--green-700); }
.circular-features { display: flex; justify-content: space-between; gap: 10px; margin: 28px 0; }
.circular-features span { display: grid; justify-items: center; gap: 8px; text-align: center; color: var(--green-700); font-size: .72rem; }
.circular-features .icon { width: 54px; height: 54px; padding: 13px; border-radius: 50%; background: var(--green-100); }
.resilience-card.gold .circular-features .icon { color: var(--gold-700); background: var(--gold-100); }
.outcome-mock { display: grid; grid-template-columns: 1fr 180px; align-items: center; gap: 14px; padding: 18px; border-radius: 14px; background: var(--green-100); }
.resilience-card.gold .outcome-mock { background: var(--gold-100); }
.outcome-mock img { height: 160px; object-fit: cover; border-radius: 12px; }
.outcome-mock img.round { border-radius: 50%; }
.equation-framework { display: flex; align-items: stretch; gap: 9px; padding-bottom: 42px; }
.equation-framework .flow-node > .icon { width: 43px; height: 43px; color: var(--green-700); }
.equation-framework .result { border-radius: 50%; display: grid; place-items: center; background: var(--green-900); color: #fff; }
.equation-framework .result h3,.equation-framework .result .icon { color: #fff; }
.resilience-stories { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.story-split { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid #dce4dc; border-radius: 14px; background: #fff; }
.story-split img { height: 100%; object-fit: cover; }
.story-split > img[src*="02_05_00 PM (2).jpg"] { object-position: center 28%; }
.story-split div { padding: 17px; }
.story-split h3 { color: var(--green-700); font-size: .95rem; }
.story-split span { color: var(--gold-700); font-size: .67rem; font-weight: 700; }
.story-split p { color: #637168; font-size: .72rem; line-height: 1.5; }

/* Partner pages and forms */
.opportunity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.opportunity-card { overflow: hidden; position: relative; }
.opportunity-card .op-stat { position: absolute; left: 18px; top: 18px; z-index: 2; display: grid; padding: 11px 14px; border-radius: 12px; background: var(--green-900); color: var(--gold-500); font-weight: 800; }
.opportunity-card .op-stat small { color: #fff; font-size: .55rem; text-transform: uppercase; }
.opportunity-card > img { height: 230px; object-fit: cover; }
.opportunity-card > div:last-child { padding: 24px; }
.opportunity-card h3 { color: var(--green-700); }
.opportunity-card p { color: #627067; line-height: 1.6; }
.opportunity-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--green-700); font-weight: 700; }
.why-invest { display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; }
.invest-list { grid-template-columns: 1fr 1fr; }
.invest-list .info-card { display: grid; grid-template-columns: auto 1fr; padding: 20px; }
.invest-list .info-card .icon { grid-row: 1/3; margin-right: 13px; }
.invest-list .info-card h3 { margin: 3px 0; }
.invest-list .info-card p { margin: 0; }
.why-invest aside { display: grid; align-content: center; justify-items: center; padding: 40px; border-radius: 20px; background: var(--green-900); color: #fff; text-align: center; }
.why-invest aside strong { color: var(--gold-500); font-size: 4rem; }
.why-invest aside span { font-weight: 700; }
.why-invest aside p { color: #d5e4d8; }
.investment-stepper { display: grid; gap: 0; max-width: 850px; }
.investment-stepper article { display: grid; grid-template-columns: 70px 1fr; gap: 22px; position: relative; padding: 0 0 28px; }
.investment-stepper article:not(:last-child)::before { content: ""; position: absolute; left: 29px; top: 57px; bottom: 0; width: 2px; background: var(--green-700); }
.investment-stepper b { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: var(--green-700); color: #fff; }
.investment-stepper div { padding: 18px 22px; background: #fff; border: 1px solid #e0e6e0; border-radius: 14px; }
.investment-stepper h3 { color: var(--green-700); margin: 0; }
.investment-stepper p { color: #627068; margin-bottom: 0; }
.form-band { padding: 65px 0; background: var(--green-100); }
.form-split { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; align-items: start; }
.form-split > div:first-child h2 { color: var(--green-700); font-size: 2.2rem; }
.inquiry-form,.news-sidebar form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 30px; background: #fff; border: 1px solid #e1e7e1; border-radius: 18px; box-shadow: var(--soft-shadow); }
.inquiry-form h2 { grid-column: 1/-1; color: var(--green-700); margin-top: 0; }
.inquiry-form label,.news-sidebar label { display: grid; gap: 6px; color: var(--green-700); font-size: .78rem; font-weight: 700; }
.inquiry-form label:has(textarea),.inquiry-form .consent,.privacy-note,.inquiry-form > button,.form-success { grid-column: 1/-1; }
.inquiry-form input,.inquiry-form textarea,.news-sidebar input,.newsletter-form input,.catalog-search input { width: 100%; border: 1px solid #ccd7cd; border-radius: 10px; padding: 12px 13px; color: var(--ink); background: #fff; }
.inquiry-form .consent { display: flex; align-items: flex-start; gap: 8px; color: #5c6b62; font-weight: 500; }
.inquiry-form .consent input { width: auto; margin-top: 4px; }
.field-message { min-height: 15px; color: #b42318; font-size: .68rem; font-weight: 500; }
.field-valid { border-color: #27914d !important; }
.field-message.valid { color: #22783f; }
.privacy-note { margin: -4px 0 0; color: #718078; font-size: .72rem; }
.form-success { padding: 17px; border-radius: 11px; background: var(--green-100); color: var(--green-700); }
.tab-list { position: relative; display: flex; gap: 4px; border-bottom: 1px solid #dce4dc; }
.tab-list button { flex: 1; padding: 15px; border: 0; background: transparent; color: #65736b; font-weight: 700; }
.tab-list button[aria-selected="true"] { color: var(--green-700); }
.tab-underline { position: absolute; left: 0; bottom: -1px; width: 25%; height: 3px; background: var(--gold-500); transition: transform .3s ease,width .3s ease; }
.tab-panels { border: 1px solid #e0e6e0; border-top: 0; border-radius: 0 0 18px 18px; overflow: hidden; }
.tab-panels > article { min-height: 370px; animation: tabFade .25s ease; }
.tab-group:not(.comparison-tabs) .tab-panels > article { display: grid; grid-template-columns: 1fr 1fr; }
.tab-panels article > img { height: 100%; object-fit: cover; }
.tab-panels article > div:not(.table-scroll) { padding: 40px; }
.tab-panels h3 { color: var(--green-700); font-size: 1.8rem; }
.tab-panels p { color: #5e6d64; line-height: 1.7; }
@keyframes tabFade { from { opacity: 0; transform: translateY(6px); } }
.partner-logo-strip { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.partner-logo-strip span { display: grid; place-items: center; gap: 9px; padding: 22px 12px; border: 1px solid #e0e6e0; border-radius: 13px; background: #fff; color: var(--green-700); text-align: center; font-weight: 700; font-size: .75rem; }
.partner-logo-strip .icon { width: 35px; height: 35px; }
.collaboration-model,.supplier-path { display: flex; gap: 10px; align-items: stretch; }
.eligibility-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.eligibility-pair article { padding: 35px; border: 1px solid #dce5dc; border-radius: 18px; background: #fff; }
.eligibility-pair .benefits { background: var(--gold-100); border-color: #efd18f; }
.eligibility-pair h2 { color: var(--green-700); }
.dashed-arrow { color: var(--gold-500); }

/* Catalog and products */
.catalog-tools { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-bar button { padding: 9px 14px; border: 1px solid var(--green-700); border-radius: 999px; background: #fff; color: var(--green-700); font-size: .76rem; font-weight: 700; transition: transform .2s ease,background .2s ease,color .2s ease; }
.filter-bar button.active,.filter-bar button:hover { background: var(--green-700); color: #fff; }
.filter-bar button:active { transform: scale(.94); }
.catalog-search { display: flex; align-items: center; gap: 7px; min-width: 230px; padding: 0 10px; border: 1px solid #ccd7cd; border-radius: 999px; background: #fff; }
.catalog-search input { border: 0; padding-inline: 2px; }
.catalog-sort { display: flex; align-items: center; gap: 7px; color: var(--green-700); font-size: .75rem; font-weight: 700; }
.catalog-sort select { padding: 11px 28px 11px 11px; border: 1px solid #ccd7cd; border-radius: 10px; background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.home-products { display: grid; gap: 28px; }
.home-products .section-title { margin-bottom: 0; }
.home-product-filters { justify-content: center; }
.home-product-grid { grid-template-columns: repeat(4,1fr); }
.home-product-grid .product-card:nth-child(n+9) { grid-column: span 2; display: grid; grid-template-columns: .8fr 1.2fr; }
.home-product-grid .product-card:nth-child(n+9) figure { height: 100%; aspect-ratio: auto; }
.services-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; padding: 22px; border-radius: 17px; background: var(--green-100); }
.services-strip a { display: flex; align-items: flex-start; gap: 11px; padding: 16px; border-radius: 12px; background: #fff; transition: transform .25s ease; }
.services-strip a:hover { transform: translateY(-3px); }
.services-strip .icon { width: 35px; height: 35px; color: var(--green-700); }
.services-strip span { display: grid; gap: 5px; }
.services-strip strong { color: var(--green-700); font-size: .82rem; }
.services-strip small { color: #68766e; line-height: 1.45; }
.home-products-cta { text-align: center; }
.stats-panel:not(.inner-stats) { grid-template-columns: repeat(6,minmax(0,1fr)); }
.stats-panel:not(.inner-stats) .stat-card { min-width: 0; grid-template-columns: 58px minmax(0,1fr); column-gap: 6px; padding-inline: 8px; }
.stats-panel:not(.inner-stats) .stat-icon { width: 56px; height: 56px; }
.stats-panel:not(.inner-stats) .stat-icon .icon { width: 32px; height: 32px; }
.stats-panel:not(.inner-stats) .stat-card strong { min-width: 0; font-size: clamp(1.35rem,2.05vw,1.65rem); white-space: nowrap; }
.stats-panel:not(.inner-stats) .stat-card small { font-size: .58rem; }
.product-card { overflow: hidden; }
.product-card.is-hiding { opacity: 0; transform: scale(.96); }
.product-card[hidden] { display: none; }
.product-card figure { margin: 0; aspect-ratio: 16/10; overflow: hidden; }
.product-card figure img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card figure img[src*="02_05_00 PM (2).jpg"] { object-position: center 28%; }
.product-card:hover figure img { transform: scale(1.03); }
.product-card > div { padding: 22px; }
.product-tag { display: inline-block; padding: 5px 9px; border-radius: 999px; background: var(--gold-100); color: #9b6900; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.product-card h3 { color: var(--green-700); margin-bottom: 7px; }
.product-card p { color: #65736b; font-size: .8rem; line-height: 1.55; }
.availability { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-size: .72rem; font-weight: 700; }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #28a153; }
.availability.seasonal::before { background: var(--gold-500); }
.product-actions { display: flex; gap: 8px; margin-top: 15px; }
.product-actions .btn { padding: 9px 11px; font-size: .7rem; }
.no-products { padding: 35px; border: 1px dashed var(--green-700); border-radius: 16px; text-align: center; }
.comparison-tabs .tab-underline { width: 50%; }
.comparison-tabs .tab-panels > article { min-height: 0; }
.distribution-coverage { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
.distribution-coverage h2 { color: var(--green-700); }
.coverage-map { position: relative; min-height: 320px; display: grid; place-items: center; border-radius: 50% 45% 55% 48%; background: radial-gradient(circle,var(--gold-100) 0 22%,var(--green-100) 23% 48%,#d6e6d8 49% 70%,transparent 71%); }
.coverage-map span { position: absolute; padding: 8px 13px; border-radius: 999px; background: var(--green-900); color: #fff; font-size: .75rem; }
.coverage-map span:nth-child(1) { left: 42%; top: 48%; background: var(--gold-500); color: var(--green-900); }
.coverage-map span:nth-child(2) { left: 22%; top: 25%; }
.coverage-map span:nth-child(3) { right: 12%; bottom: 18%; }
.inquiry-basket-button { position: fixed; right: 24px; bottom: 24px; z-index: 40; width: 62px; height: 62px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--green-700); color: #fff; box-shadow: 0 13px 30px rgba(18,53,36,.3); }
.inquiry-basket-button span { position: absolute; right: -2px; top: -4px; min-width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-500); color: var(--green-900); font-size: .7rem; font-weight: 800; }
.inquiry-basket { position: fixed; right: 20px; bottom: 95px; z-index: 41; width: min(390px,calc(100% - 40px)); max-height: 70vh; overflow: auto; padding: 20px; border-radius: 18px; background: #fff; box-shadow: 0 20px 70px rgba(0,0,0,.28); transform: translateX(calc(100% + 40px)); transition: transform .3s ease; }
.inquiry-basket.open { transform: translateX(0); }
.inquiry-basket header { display: flex; justify-content: space-between; align-items: center; }
.inquiry-basket header h2 { color: var(--green-700); }
.inquiry-basket header button { border: 0; background: none; font-size: 1.8rem; }
.basket-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 13px 0; border-bottom: 1px solid #e0e6e0; }
.basket-item strong { color: var(--green-700); font-size: .8rem; }
.quantity-stepper { display: flex; align-items: center; gap: 8px; }
.quantity-stepper button,.basket-remove { border: 1px solid #cfd8d0; border-radius: 7px; background: #fff; }
.basket-remove { grid-column: 1/-1; justify-self: start; color: #a33; }
.product-modal,.lightbox { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 25px; background: rgba(3,20,11,.78); backdrop-filter: blur(5px); }
.product-modal-card { position: relative; width: min(900px,100%); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; background: #fff; }
.product-modal-card > img { height: 100%; object-fit: cover; }
.product-modal-card > img[src*="02_05_00 PM (2).jpg"] { object-position: center 28%; }
.product-modal-card > div { padding: 38px; }
.product-modal-card h2 { color: var(--green-700); }
.product-modal-card li { margin: 7px 0; color: #5d6c63; }
.modal-close { position: absolute; right: 13px; top: 13px; z-index: 2; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--green-900); color: #fff; font-size: 1.45rem; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

/* Impact and news */
.impact-dashboard { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 175px; gap: 16px; }
.impact-number { position: relative; display: grid; align-content: center; padding: 25px; overflow: hidden; border: 1px solid #dce5dc; border-radius: 17px; background: #fff; }
.impact-number.large { grid-column: span 2; grid-row: span 2; }
.impact-number.wide { grid-column: span 2; }
.impact-number.tall { grid-row: span 2; }
.impact-number.green { background: var(--green-900); color: #fff; }
.impact-number.gold { background: var(--gold-100); }
.impact-number strong { color: var(--gold-500); font-size: clamp(2.2rem,4vw,4.8rem); line-height: 1; }
.impact-number span { max-width: 230px; color: var(--green-700); font-weight: 700; }
.impact-number.green span { color: #fff; }
.impact-number small { position: absolute; left: 18px; right: 18px; bottom: 12px; opacity: 0; transform: translateY(5px); color: #66736b; font-size: .65rem; transition: .2s ease; }
.impact-number:hover small { opacity: 1; transform: translateY(0); }
.impact-themes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.progress-card { padding: 24px; }
.progress-card > div:first-child { display: flex; justify-content: space-between; }
.progress-card h3 { color: var(--green-700); margin: 0; }
.progress-card span { color: var(--gold-700); font-weight: 800; }
.progress-card p { color: #637168; line-height: 1.6; }
.progress-track { height: 9px; overflow: hidden; border-radius: 999px; background: #dfe7df; }
.progress-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--green-700),var(--gold-500)); transition: width 1.4s cubic-bezier(.2,.75,.2,1); }
.sdg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sdg-card { padding: 26px; }
.sdg-card b { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 14px; background: var(--green-700); color: #fff; font-size: 1.3rem; }
.sdg-card h3 { color: var(--green-700); }
.sdg-card p { color: #627168; font-size: .85rem; line-height: 1.55; }
.methodology-note { padding: 18px; border-left: 4px solid var(--gold-500); background: var(--gold-100); font-size: .82rem; }
.featured-story { position: relative; min-height: 610px; overflow: hidden; border-radius: 22px; }
.featured-story > img { width: 100%; height: 610px; object-fit: cover; }
.featured-story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,34,20,.91),rgba(8,34,20,.42) 62%,transparent); }
.featured-story > div { position: absolute; left: 0; top: 0; bottom: 0; z-index: 1; width: min(660px,70%); display: grid; align-content: center; padding: 55px; color: #fff; }
.featured-story span { color: var(--gold-500); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 800; }
.featured-story h2 { font-size: 2.5rem; }
.featured-story p { line-height: 1.7; color: #eef5ef; }
.featured-story a { color: var(--gold-500); font-weight: 700; }
.masonry-stories { columns: 2; column-gap: 20px; }
.masonry-card { break-inside: avoid; margin-bottom: 20px; overflow: hidden; }
.masonry-card figure { margin: 0; cursor: zoom-in; }
.masonry-card img { max-height: 390px; object-fit: cover; }
.masonry-card > div { padding: 25px; }
.masonry-card span { color: var(--gold-700); font-size: .7rem; font-weight: 700; }
.masonry-card h3 { color: var(--green-700); }
.masonry-card blockquote { margin: 0 0 17px; color: #5f6e65; line-height: 1.65; }
.masonry-card a { color: var(--green-700); font-weight: 700; }
.news-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.news-filters { margin-bottom: 18px; }
.article-list { display: grid; gap: 16px; }
.article-row { display: grid; grid-template-columns: 230px 1fr; overflow: hidden; }
.article-row img { height: 100%; object-fit: cover; }
.article-row > div { padding: 22px; }
.article-row span { color: var(--gold-700); text-transform: uppercase; font-size: .68rem; font-weight: 800; }
.article-row h3 { color: var(--green-700); }
.article-row p { color: #627168; line-height: 1.55; font-size: .85rem; }
.article-row a { color: var(--green-700); font-weight: 700; }
.news-sidebar { position: sticky; top: 120px; display: grid; gap: 18px; }
.news-sidebar > section { padding: 24px; border-radius: 17px; background: var(--green-900); color: #fff; }
.news-sidebar > section + section { background: var(--gold-100); color: var(--ink); }
.news-sidebar h2 { color: var(--gold-500); }
.news-sidebar h3 { color: var(--green-700); font-size: .9rem; }
.news-sidebar article { padding-block: 14px; border-bottom: 1px solid #e2d5b9; }
.news-sidebar article a { color: var(--green-700); font-size: .75rem; font-weight: 700; }
.news-sidebar form { grid-template-columns: 1fr; padding: 0; border: 0; box-shadow: none; }

/* Contact */
.contact-split { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.contact-cards { display: grid; gap: 13px; }
.contact-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 19px; }
.contact-card > .icon:first-child { width: 44px; height: 44px; padding: 10px; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.contact-card span { display: grid; }
.contact-card strong { color: var(--green-700); }
.contact-card small { color: #647269; }
.map-strip { min-height: 330px; display: grid; place-items: center; background: linear-gradient(rgba(18,53,36,.72),rgba(18,53,36,.72)),url("Images and designs/Page_3_Enhancing_Livelihoods_and_Markets/P3_02_Managing_Land_and_Resources_Terraced_Landscape.jpg") center/cover; }
.map-strip div { display: grid; justify-items: center; gap: 12px; padding: 35px; border-radius: 18px; background: rgba(255,255,255,.94); color: var(--green-700); text-align: center; }
.map-strip a { color: var(--gold-700); font-weight: 700; }

.cta-band { margin-top: 80px; margin-bottom: 70px; }
.cta-band > .btn { margin-left: auto; }
.back-to-top { position: fixed; right: 25px; bottom: 25px; z-index: 35; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--gold-500); color: var(--green-900); font-weight: 800; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.carousel-controls { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 15px; }
.carousel-controls > button { width: 38px; height: 38px; border: 1px solid var(--green-700); border-radius: 50%; background: #fff; color: var(--green-700); }
.carousel-controls > div { display: flex; gap: 6px; }
.carousel-controls [data-carousel-dot] { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #b7c5b8; }
.carousel-controls [data-carousel-dot].active { background: var(--gold-500); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease,transform .55s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.btn .icon:last-child { transition: transform .2s ease; }
.btn:hover .icon:last-child { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.lightbox figure { position: relative; max-width: min(1000px,90vw); max-height: 85vh; margin: 0; }
.lightbox img { max-height: 80vh; object-fit: contain; }
.lightbox figcaption { padding: 10px; color: #fff; text-align: center; }
.lightbox button { position: absolute; top: 50%; border: 0; background: var(--gold-500); color: var(--green-900); width: 42px; height: 42px; border-radius: 50%; }
.lightbox .prev { left: -55px; }
.lightbox .next { right: -55px; }
.lightbox .close { top: -45px; right: 0; }

@media (max-width: 1240px) {
  .site-header .main-nav { gap: 10px; font-size: .73rem; }
  .site-header .brand { min-width: 102px; }
  .site-header .brand-logo { width: 98px; height: 78px; }
  .site-header .brand-text span { font-size: 1.45rem; }
  .site-header .brand-text small { font-size: .75rem; }
  .site-header .header-cta { display: none; }
  .environmental-photo-grid { grid-template-columns: repeat(3,1fr); }
  .resilience-stories { grid-template-columns: 1fr 1fr; }
  .integrated-system-flow { grid-template-columns: repeat(3,minmax(190px,1fr)) minmax(220px,.82fr); gap: 15px; }
  .integrated-system-card { padding-left: 16px; padding-right: 65px; }
  .integrated-system-icon { right: -8px; width: 65px; height: 65px; box-shadow: 0 0 0 4px #fff; }
  .integrated-system-icon .icon { width: 37px; height: 37px; }
}

@media (max-width: 980px) {
  .site-header .nav-shell { min-height: 78px; }
  .site-header .brand { order: 1; }
  .site-header .language-switcher { order: 2; margin-left: auto; }
  .site-header .menu-toggle { order: 3; }
  .site-header .main-nav { order: 4; }
  .site-header .brand { min-width: 0; }
  .site-header .brand-logo { width: 80px; height: 66px; }
  .site-header .main-nav { position: fixed; inset: 78px 0 auto auto; width: min(390px,90vw); height: calc(100dvh - 78px); max-height: calc(100dvh - 78px); display: block; padding: 24px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; background: #fff; box-shadow: -16px 20px 34px rgba(18,53,36,.16); transform: translateX(105%); opacity: 1; visibility: visible; z-index: 999; transition: transform .32s ease; }
  .site-header .main-nav.open { transform: translateX(0); }
  .site-header .main-nav > a,.nav-parent > a { display: block; padding: 15px 3px !important; }
  .site-header .main-nav > * { opacity: 0; transform: translateX(20px); transition: opacity .25s ease,transform .25s ease; }
  .site-header .main-nav.open > * { opacity: 1; transform: none; }
  .site-header .main-nav.open > *:nth-child(2) { transition-delay: .04s; }
  .site-header .main-nav.open > *:nth-child(3) { transition-delay: .08s; }
  .site-header .main-nav.open > *:nth-child(4) { transition-delay: .12s; }
  .site-header .main-nav.open > *:nth-child(5) { transition-delay: .16s; }
  .site-header .main-nav.open > *:nth-child(6) { transition-delay: .2s; }
  .nav-parent { position: relative; z-index: 2; justify-content: space-between; background: #fff; }
  .nav-parent > button { padding: 13px; }
  .main-nav .nav-dropdown-menu { position: relative; left: auto; top: auto; z-index: 3; width: 100%; height: auto; max-height: 0; min-width: 0; padding: 0 0 0 10px; opacity: 1; visibility: visible; transform: none; overflow: hidden; border: 0; border-left: 3px solid transparent; border-radius: 0 0 10px 10px; background: #f7fbf6; box-shadow: none; transition: max-height .3s ease,padding .3s ease,border-color .3s ease; }
  .nav-dropdown.open { position: relative; z-index: 10; }
  .nav-dropdown.open .nav-dropdown-menu { height: auto; max-height: 480px; padding: 6px 0 9px 13px; overflow: visible; border-left-color: var(--gold-500); }
  .main-nav .nav-dropdown-menu a { position: relative; z-index: 4; display: flex; padding: 11px 10px; background: #f7fbf6; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-copy { padding: 45px 0; max-width: none; }
  .inner-hero-media { min-height: 430px; margin: 0 -44px; clip-path: none; }
  .inner-stats { display: grid; grid-template-columns: repeat(2,1fr); }
  .inner-stats .stat-card { border-right: 0; }
  #content { gap: 65px; }
  .section-title.ruled { width: min(100% - 40px,900px); }
  .four-card-row,.five-impact-row,.values-row,.team-grid,.badge-wall,.food-pillars,.focus-groups,.market-priority-grid,.sdg-grid { grid-template-columns: 1fr 1fr; }
  .pillar-row { grid-template-columns: 1fr; }
  .pillar-row.reverse figure { order: 0; }
  .leadership-grid,.operation-products,.farming-pillars,.opportunity-grid,.product-grid { grid-template-columns: 1fr 1fr; }
  .home-product-grid { grid-template-columns: 1fr 1fr; }
  .home-product-grid .product-card:nth-child(n+9) { grid-column: auto; display: block; }
  .home-product-grid .product-card:nth-child(n+9) figure { width: 100%; height: auto; aspect-ratio: 16/10; }
  .services-strip { grid-template-columns: 1fr 1fr; }
  .operation-flow,.pathway,.value-chain,.environment-flow,.collaboration-model,.supplier-path,.hiring-flow,.equation-framework,.pillar-loop { overflow-x: auto; padding-bottom: 12px; }
  .operation-flow .flow-node,.pathway .flow-node,.value-chain .flow-node,.environment-flow .flow-node,.collaboration-model .flow-node,.supplier-path .flow-node,.hiring-flow .flow-node,.equation-framework .flow-node,.pillar-loop .flow-node { min-width: 210px; }
  .quality-panel,.food-intro,.system-diagram,.why-invest,.form-split,.contact-split,.distribution-coverage { grid-template-columns: 1fr; }
  .system-nodes { overflow-x: auto; }
  .system-nodes .flow-node { min-width: 210px; }
  .environmental-wide,.matrix-pair,.resilience-twins,.eligibility-pair,.impact-themes { grid-template-columns: 1fr; }
  .mixed-market-band,.land-resource { grid-template-columns: 1fr; }
  .enablers-strip { grid-template-columns: 1fr; }
  .catalog-tools { grid-template-columns: 1fr 1fr; }
  .catalog-tools .filter-bar { grid-column: 1/-1; }
  .impact-dashboard { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .partner-logo-strip { grid-template-columns: repeat(3,1fr); }
  .compliance-intro,.traceability-feature { grid-template-columns: 1fr; }
  .trace-module-grid { grid-template-columns: 1fr 1fr; }
  .integrated-system-layout { grid-template-columns: 1fr; gap: 24px; }
  .integrated-loop-stage { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 38px 28px; padding: 16px 0 0; }
  .integrated-flow-lines,.integrated-flow-label { display: none; }
  .integrated-system-card { position: relative; inset: auto !important; width: auto; min-height: 150px; }
  .integrated-system-card.system-aquaculture { grid-column: 1/-1; width: calc(50% - 14px); justify-self: center; }
  .integrated-system-card:not(.system-aquaculture)::after { position: absolute; left: 50%; bottom: -34px; color: var(--green-700); font-size: .72rem; font-weight: 700; transform: translateX(-50%); white-space: nowrap; }
  .integrated-system-card.system-crops::after { content: "Crop residues & feed  ↓"; }
  .integrated-system-card.system-livestock::after { content: "Manure & organic waste  ↓"; }
  .integrated-system-hub { position: relative; left: auto; bottom: auto; grid-column: 1/-1; justify-self: center; margin: 0 auto; transform: none; }
  .integrated-benefits { min-height: 0; }
  .integrated-benefits ul { columns: 2; column-gap: 30px; }
  .farming-impact-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 28px); }
  .site-header .nav-shell { width: calc(100% - 22px); gap: 8px; }
  .language-switcher select { width: 104px; min-height: 38px; padding-inline-start: 29px; font-size: .67rem; }
  .site-header .brand-logo { width: 72px; height: 60px; }
  .site-header .brand-mark { width: 47px; height: 47px; }
  .site-header .brand-text span { font-size: 1.25rem; }
  .site-header .brand-text small { font-size: .65rem; }
  .inner-hero h1 { font-size: 2.6rem; }
  .inner-hero-media { min-height: 340px; margin: 0 -17px; }
  .hero-badge { width: 78px; height: 78px; }
  .hero-badge .icon { width: 34px; }
  .inner-stats { grid-template-columns: 1fr; margin-bottom: 50px; }
  .inner-stats .stat-card { justify-content: flex-start; padding: 18px; }
  .section-title.ruled { width: calc(100% - 34px); grid-template-columns: 45px 1fr 45px; }
  .section-title.ruled h2 { font-size: 1.1rem; }
  #content > .section-title + * { margin-top: -45px; }
  .story-timeline::before { left: 11px; }
  .timeline-item,.timeline-item.right { width: 100%; margin-left: 0; padding: 0 0 35px 42px; text-align: left; }
  .timeline-dot,.timeline-item.right .timeline-dot { left: 0; right: auto; }
  .mission-vision,.leadership-grid,.team-grid,.badge-wall,.culture-mosaic,.operation-products,.farming-pillars,.food-pillars,.focus-groups,.market-priority-grid,.resilience-twins,.opportunity-grid,.product-grid,.impact-themes,.sdg-grid,.contact-split { grid-template-columns: 1fr; }
  .home-product-grid,.services-strip { grid-template-columns: 1fr; }
  .stats-panel:not(.inner-stats) { grid-template-columns: 1fr 1fr; }
  .stats-panel:not(.inner-stats) .stat-card { border-right: 0; border-bottom: 1px solid var(--gold-500); }
  .culture-mosaic { grid-template-rows: auto; }
  .culture-mosaic .wide,.culture-mosaic > div { grid-column: auto; grid-row: auto; }
  .role-row,.document-list article { align-items: flex-start; flex-direction: column; }
  .quality-checks,.outcome-box { grid-template-columns: 1fr; }
  .buy-supply-split { grid-template-columns: 1fr; }
  .wide-focus { grid-template-columns: 1fr; }
  .environmental-photo-grid { grid-template-columns: 1fr 1fr; }
  .resilience-banner { grid-template-columns: 1fr 1fr; }
  .resilience-banner > div { grid-column: 1/-1; }
  .circular-features { display: grid; grid-template-columns: 1fr 1fr; }
  .outcome-mock { grid-template-columns: 1fr; }
  .trace-module-grid { grid-template-columns: 1fr; }
  .traceability-panel,.traceability-feature { padding: 24px 20px; }
  .compliance-intro > div { padding: 24px 20px; }
  .integrated-loop-stage { grid-template-columns: 1fr; gap: 42px; }
  .integrated-system-card,.integrated-system-card.system-aquaculture { grid-column: auto; width: auto; justify-self: stretch; }
  .integrated-system-card { min-height: 134px; padding-right: 76px; }
  .integrated-system-icon { right: 10px; box-shadow: none; }
  .integrated-system-hub { grid-column: auto; }
  .integrated-benefits ul { columns: 1; }
  .section-title.ruled.farming-impact-title { grid-template-columns: 1fr; grid-template-areas: "eyebrow" "title"; }
  .farming-impact-title::before,.farming-impact-title::after { display: none; }
  .farming-impact-title h2 { max-width: 340px; justify-self: center; line-height: 1.25; }
  .farming-impact-grid { grid-template-columns: 1fr; }
  .back-to-top { display: none; }
  .resilience-stories { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .story-split { min-width: 86vw; scroll-snap-align: center; }
  .invest-list { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; padding: 22px; }
  .inquiry-form > * { grid-column: 1 !important; }
  .tab-list { overflow-x: auto; }
  .tab-list button { min-width: 130px; }
  .tab-group:not(.comparison-tabs) .tab-panels > article { grid-template-columns: 1fr; }
  .tab-panels article > img { max-height: 280px; }
  .partner-logo-strip { grid-template-columns: 1fr 1fr; }
  .catalog-tools { grid-template-columns: 1fr; }
  .catalog-tools .filter-bar { grid-column: auto; }
  .catalog-search { min-width: 0; }
  .product-actions { flex-direction: column; }
  .product-modal-card { grid-template-columns: 1fr; }
  .product-modal-card > img { max-height: 260px; }
  .impact-dashboard { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .impact-number,.impact-number.large,.impact-number.wide,.impact-number.tall { grid-column: auto; grid-row: auto; min-height: 170px; }
  .featured-story > img { height: 700px; }
  .featured-story > div { width: 100%; padding: 30px; }
  .featured-story h2 { font-size: 2rem; }
  .masonry-stories { columns: 1; }
  .article-row { grid-template-columns: 1fr; }
  .article-row img { max-height: 240px; }
  .news-sidebar { grid-template-columns: 1fr; }
  .cta-band { width: calc(100% - 34px); padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
