:root {
  --forest: #14532d;
  --forest-900: #082618;
  --forest-800: #0d3b24;
  --green: #4d9f45;
  --gold: #d6a63a;
  --gold-dark: #ad7c18;
  --off-white: #f7f7f2;
  --paper: #ffffff;
  --mist: #eef2e8;
  --charcoal: #111814;
  --muted: #66736b;
  --line: rgba(17, 24, 20, 0.12);
  --shadow: 0 18px 48px rgba(17, 24, 20, 0.1);
  --radius: 8px;
  --header-height: 76px;
  --shell: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(56px, 6vw, 88px) 0;
}

.section-dark {
  color: var(--paper);
  background: var(--forest-900);
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 24, 20, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--forest);
  letter-spacing: 0;
}

.brand-mark {
  width: 77px;
  height: 77px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 159, 69, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(77, 159, 69, 0.14), rgba(214, 166, 58, 0.16));
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.03rem;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--forest-800);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  font-size: 0.84rem;
  font-weight: 800;
}

.nav-menu > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: var(--charcoal);
}

.nav-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu > a:not(.button):hover::after,
.nav-menu > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--mist);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 12px 26px rgba(20, 83, 45, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-800);
  box-shadow: 0 16px 32px rgba(20, 83, 45, 0.26);
}

.button-secondary,
.button-light {
  color: var(--forest);
  background: var(--paper);
  border-color: rgba(20, 83, 45, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(20, 83, 45, 0.34);
  box-shadow: 0 14px 30px rgba(17, 24, 20, 0.12);
}

.button-gold {
  color: var(--charcoal);
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(214, 166, 58, 0.24);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #e3b849;
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.eyebrow.gold {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 4.7vw, 4.75rem);
  line-height: 1;
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--green);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.1vw, 3.15rem);
  line-height: 1.05;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  min-height: 700px;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: clamp(30px, 4vw, 50px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 38, 24, 0), rgba(8, 38, 24, 0.94));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.98) 0%, rgba(247, 247, 242, 0.88) 46%, rgba(8, 38, 24, 0.12) 78%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.25), rgba(8, 38, 24, 0.3)),
    url("../assets/images/company/about-farm.jpg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.hero-copy {
  padding: clamp(36px, 6vw, 70px) 0 30px;
  color: var(--charcoal);
}

.hero-copy .eyebrow,
.hero-copy h1 span {
  color: var(--forest);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: #27312b;
  font-size: 1.08rem;
}

.hero .hero-text {
  color: #27312b;
}

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

.hero-card {
  align-self: center;
  margin-bottom: 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(145deg, rgba(8, 38, 24, 0.94), rgba(20, 83, 45, 0.9));
  box-shadow: 0 24px 60px rgba(8, 38, 24, 0.24);
  backdrop-filter: blur(10px);
}

.hero-card h2 {
  max-width: 420px;
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-focus-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-focus-grid svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.quick-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 38, 24, 0.84);
  box-shadow: 0 22px 60px rgba(8, 38, 24, 0.22);
  backdrop-filter: blur(14px);
}

.quick-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.quick-nav a:last-child {
  border-right: 0;
}

.quick-nav svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.quick-nav a:hover,
.quick-nav a:focus-visible {
  background: rgba(214, 166, 58, 0.14);
}

.intro {
  background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.section-copy {
  max-width: 620px;
}

.section-copy .button {
  margin-top: 8px;
}

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

.stat-card,
.business-card,
.produce-card,
.operation-card,
.contact-card,
.service-card,
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(17, 24, 20, 0.06);
}

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

.business-card {
  min-height: 170px;
  padding: 26px;
}

.business-card svg,
.produce-card svg,
.operation-card svg,
.contact-card > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--forest);
  stroke-width: 1.9;
}

.business-card strong,
.business-card span {
  display: block;
}

.business-card strong {
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.business-card span {
  color: var(--muted);
  line-height: 1.55;
}

.business-card-primary {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(8, 38, 24, 0.95), rgba(20, 83, 45, 0.92)),
    var(--forest);
}

.business-card-primary svg,
.business-card-primary strong {
  color: var(--gold);
}

.business-card-primary span {
  color: rgba(255, 255, 255, 0.78);
}

.stat-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
}

.stat-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--forest);
  stroke-width: 2.2;
}

.stat-card strong {
  color: var(--forest);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.stat-card span {
  max-width: 130px;
  margin-top: 10px;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link svg {
  width: 24px;
  height: 24px;
  fill: rgba(77, 159, 69, 0.12);
}

.produce {
  background: #fff;
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.produce-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(240px, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(214, 166, 58, 0.35);
  border-radius: var(--radius);
  background: var(--forest-900);
  box-shadow: var(--shadow);
}

.produce-feature-media {
  min-height: 100%;
  background: var(--mist);
}

.produce-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.produce-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.produce-feature-copy h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.produce-feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.produce-card,
.operation-card {
  min-height: 235px;
  padding: 26px 24px;
}

.produce-card h3,
.operation-card h3 {
  font-size: 1.18rem;
}

.produce-card p,
.operation-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.livestock {
  background:
    linear-gradient(180deg, var(--off-white), #fff);
}

.livestock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.operation-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.operation-card:hover,
.operation-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(20, 83, 45, 0.24);
  box-shadow: var(--shadow);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

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

.category-card {
  scroll-margin-top: calc(var(--header-height) + 18px);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover,
.category-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-media {
  height: 160px;
  overflow: hidden;
  background: var(--mist);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.category-card:hover .card-media img,
.category-card:focus-within .card-media img {
  transform: scale(1.08);
}

.card-body {
  position: relative;
  padding: 28px 18px 22px;
}

.card-body > svg {
  position: absolute;
  top: -22px;
  left: 18px;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(20, 83, 45, 0.24);
}

.card-body p {
  min-height: 72px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.card-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 800;
}

.card-body a svg {
  width: 15px;
  height: 15px;
}

.featured {
  background: linear-gradient(180deg, var(--off-white), #fff);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 46px);
  padding: clamp(28px, 4.5vw, 50px);
  border: 1px solid rgba(20, 83, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.featured-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.product-subtitle {
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-800);
  font-size: 0.88rem;
  font-weight: 800;
}

.check-list svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: var(--green);
}

.featured-image img {
  width: min(590px, 100%);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(17, 24, 20, 0.18));
}

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

.spec-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 12px;
  align-items: center;
}

.spec-list svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--forest);
  background: var(--mist);
}

.spec-list strong {
  font-size: 1.12rem;
  line-height: 1.1;
}

.spec-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.nigeria {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nigeria::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 38, 24, 0.95), rgba(8, 38, 24, 0.88)),
    url("../assets/images/company/field-operations.jpg") center / cover no-repeat;
}

.nigeria::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, 0.26) 48%, transparent 49%),
    linear-gradient(-45deg, transparent 47%, rgba(214, 166, 58, 0.22) 48%, transparent 49%);
  background-size: 42px 42px;
}

.nigeria-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

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

.benefit {
  min-height: 202px;
  padding: 8px 18px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.benefit:last-child {
  border-right: 0;
}

.benefit svg {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--gold);
  stroke-width: 1.8;
}

.benefit h3 {
  margin-inline: auto;
  max-width: 170px;
  color: var(--paper);
}

.benefit p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.implements {
  background: #fff;
}

#implements {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.implements-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
}

.implement-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.implement-item {
  display: grid;
  grid-template-rows: 108px auto;
  place-items: center;
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.implement-item:hover,
.implement-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(20, 83, 45, 0.28);
  box-shadow: 0 16px 36px rgba(17, 24, 20, 0.1);
}

.implement-item img {
  width: 112px;
  height: 92px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.implement-item strong {
  padding: 0 10px 18px;
  font-size: 0.88rem;
  text-align: center;
}

.services {
  background: var(--off-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.business-services .service-card:first-child {
  border-color: rgba(214, 166, 58, 0.4);
  background:
    linear-gradient(180deg, rgba(214, 166, 58, 0.12), rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.service-card {
  min-height: 190px;
  padding: 24px 20px;
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--forest);
  stroke-width: 1.9;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.ceo {
  background:
    linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
}

.ceo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(300px, 0.98fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.ceo-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.ceo-image img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center top;
}

.leadership-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.leadership-points article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(17, 24, 20, 0.06);
}

.leadership-points strong,
.leadership-points span {
  display: block;
}

.leadership-points strong {
  color: var(--charcoal);
  font-size: 0.95rem;
}

.leadership-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(330px, 1.02fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
}

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

.about-image img {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
}

.contact-section {
  background: linear-gradient(180deg, #fff, var(--off-white));
}

.contact-section .section-heading {
  align-items: center;
}

.contact-section .section-heading p {
  max-width: 640px;
  margin-bottom: 0;
}

.contact-section .section-heading strong {
  color: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 26px 24px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.contact-company {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-card address {
  margin: 0 0 22px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 83, 45, 0.14);
  border-radius: var(--radius);
  color: var(--forest);
  background: rgba(20, 83, 45, 0.04);
  font-size: 0.86rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  border-color: rgba(20, 83, 45, 0.3);
  background: rgba(20, 83, 45, 0.08);
}

.contact-actions svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 30%, rgba(77, 159, 69, 0.2), transparent 28%),
    linear-gradient(135deg, var(--forest-900), var(--forest));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-grid h2 {
  max-width: 720px;
}

.cta-grid p {
  max-width: 560px;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--forest-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 50px 0 34px;
}

.footer-grid-compact {
  grid-template-columns: 1.05fr 0.65fr 1.2fr 0.95fr;
}

.brand-footer {
  color: var(--paper);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 0.86rem;
  text-transform: uppercase;
}

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

.footer li,
.footer a {
  font-size: 0.9rem;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--paper);
}

.contact-list li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.contact-list svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

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

.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;
}
.video-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    max-height: calc(100vh - var(--header-height) - 28px);
    padding: 24px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

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

  .nav-menu .button {
    width: 100%;
  }

  .hero-grid,
  .featured-grid,
  .nigeria-grid,
  .implements-grid,
  .about-grid,
  .ceo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(247, 247, 242, 0.98) 0%, rgba(247, 247, 242, 0.9) 46%, rgba(8, 38, 24, 0.66) 100%),
      url("../assets/images/company/about-farm.jpg") center / cover no-repeat;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-card {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-card h2 {
    font-size: clamp(2rem, 8vw, 3.25rem);
  }

  .quick-nav {
    margin-top: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .business-grid,
  .produce-grid,
  .livestock-grid,
  .contact-grid,
  .stats-grid,
  .benefit-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .produce-feature {
    grid-column: 1 / -1;
  }

  .benefit {
    min-height: 168px;
    border-right: 0;
    text-align: left;
  }

  .benefit h3 {
    margin-inline: 0;
  }

  .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-actions {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1180px, calc(100vw - 30px));
    --header-height: 72px;
  }

  .section-pad {
    padding: 50px 0;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

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

  .hero {
    padding-top: calc(var(--header-height) + 26px);
  }

  h1 {
    font-size: clamp(2.12rem, 9.7vw, 3rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .quick-nav {
    margin-top: 18px;
    width: var(--shell);
    grid-template-columns: 1fr;
  }

  .quick-nav a {
    min-height: 58px;
    justify-content: start;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quick-nav a:last-child {
    border-bottom: 0;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-focus-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .business-grid,
  .produce-grid,
  .livestock-grid,
  .contact-grid,
  .stats-grid,
  .category-grid,
  .benefit-grid,
  .service-grid,
  .spec-list,
  .footer-bottom,
  .check-list {
    grid-template-columns: 1fr;
  }

  .produce-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .produce-feature-media img {
    min-height: 220px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    margin-top: 16px;
  }

  .card-media {
    height: 190px;
  }

  .featured-grid {
    padding: 22px;
  }

  .service-card,
  .business-card,
  .produce-card,
  .operation-card,
  .contact-card,
  .stat-card {
    min-height: auto;
  }

  .about-image img {
    min-height: 300px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

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

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
