:root {
  --green: #4e7d25;
  --green-dark: #31541c;
  --green-bright: #6fb51f;
  --cream: #f4efe2;
  --cream-deep: #e8dec8;
  --ink: #15150f;
  --muted: #5f604f;
  --white: #ffffff;
  --peanut: #b9853b;
  --shadow: 0 18px 36px rgba(64, 47, 31, 0.22);
  --radius: 8px;
  --nav-height: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf8;
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-height);
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 1vw;
  color: var(--white);
  background: var(--green);
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  box-shadow: 0 18px 26px rgba(71, 54, 37, 0.2);
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.9rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(122px, 11vw, 168px);
  height: clamp(122px, 11vw, 168px);
  object-fit: contain;
  flex: 0 0 auto;
  transform: translateY(-8px);
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: clamp(12px, 1.8vw, 26px);
  font-size: clamp(0.92rem, 1.35vw, 1.45rem);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding-bottom: 8px;
  transition: color 0.3s ease;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--white);
}

.section-anchor {
  scroll-margin-top: calc(var(--nav-height) + 22px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;   /* Horizontal center */
    align-items: center;       /* Vertical center */
    text-align: center;
    overflow: hidden;
}


.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.35)),
    #31541c;
  filter: saturate(0.94);
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.2) 54%, rgba(0, 0, 0, 0.38));
}

.hero-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   /* Add this */
    text-align: center;        /* Add this */
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(3rem, 6vw, 6rem);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    text-shadow: 0 8px 24px rgba(0,0,0,0.45);
    margin-bottom: 2rem;
}
.hero-content h2 {
    color: #ffffff;
    text-align: center;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--peanut);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #d9e4ba;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 800;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  text-align: center;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

p {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 44px;
  border: 0;
  border-radius: 999px;
  background: var(--green-bright);
  color: var(--white);
  font-weight: 900;
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--green);
  box-shadow: 0 12px 22px rgba(49, 84, 28, 0.28);
}

.button-secondary {
  background: #66aa1e;
}

.section-pad {
  padding: 88px 6vw;
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.values-section {
  background: var(--white);
}

.values-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 34px;
  padding: 94px 28px 70px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.values-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.12);
}

.values-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.value-card {
  position: relative;
  min-height: 290px;
  padding: 30px 28px;
  text-align: center;
  background: rgba(244, 239, 226, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 24px rgba(25, 25, 15, 0.16);
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  color: var(--green-dark);
}

.value-card p,
.profile-panel p,
.pillar p,
.product-body p,
.product-body dd,
.contact-panel,
.quote-form {
  color: #202015;
}

.why-section {
  background: #fffdf8;
}

/* WHY CHOOSE US */

.split-grid{
    display:grid;
    grid-template-columns:46% 54%;
    gap:50px;
    align-items:stretch;
}

.collage-frame{
     display:flex;
    height:100%;
    min-height:760px; 
}

.collage-frame img{

    width:100%;

    height:100%;
min-height:760px;  
    object-fit:cover;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.why-content{

    display:flex;

    flex-direction:column;

}

.why-content h2{

    text-align:left;

    margin-bottom:28px;

}

.why-card-list{

    display:grid;

    gap:18px;

}

.why-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    background:#f4efe2;

    border-radius:16px;

    border:1px solid rgba(185,133,59,.25);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.16);

}

.why-icon{

    width:54px;

    height:54px;

    min-width:54px;

    border-radius:50%;

    border:2px solid var(--green-dark);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    color:var(--green-dark);

    background:#fff;

}

.why-card h3{

    margin:0 0 10px;

    color:var(--green-dark);

    font-size:1.2rem;

}

.why-card p{

    margin:0;

    font-size:1rem;

    line-height:1.7;

}
.about-section {
  background: #f6f1e4;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 920px;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: stretch;
}

.profile-panel,
.pillar,
.product-card,
.contact-panel,
.quote-form {
  border: 1px solid rgba(49, 84, 28, 0.18);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
}

.profile-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.86)),
    url("./assets/basket-field.png") center / cover no-repeat;
}

.profile-panel p {
  margin: 0 0 20px;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  font-weight: 700;
}

.profile-panel p:last-child {
  margin-bottom: 0;
}

.pillar-list {
  display: grid;
  gap: 18px;
}

.pillar {
  padding: 24px 28px;
}

.pillar span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.pillar p {
  margin: 0;
}

.products-section {
  background: var(--white);
}

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

.product-card {
  overflow: hidden;
}

.product-image {
  min-height: 255px;
  background-size: cover;
  background-position: center;
}

.product-image.shelled {
  background-image: url("assets\\Ground nut product.jpeg");
  background-position: top left;
}

.product-image.inshell {
  background-image: url("assets\\shelled peanut img.jpg");
}

.product-body {
  padding: 30px;
}

.product-body h3 span {
  display: block;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.72em;
}

.product-body p {
  margin: 18px 0;
}

.product-body dl {
  margin: 0;
}

.product-body dt {
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 800;
  border-left: 4px solid var(--peanut);
  padding-left: 10px;
}

.product-body dd {
  margin: 6px 0 0 14px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.section-subheading {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--muted);
  font-weight: 800;
}

.infrastructure-section {
  background: #f6f1e4;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.process-video-frame,
.process-image-frame {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(49, 84, 28, 0.18);
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.process-video-frame video,
.process-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.process-image-frame {
  position: relative;
  margin: 0;
}

.process-image-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(49, 84, 28, 0.92);
  color: var(--white);
  font-weight: 900;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 38px;
  width: 3px;
  background: rgba(78, 125, 37, 0.25);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(49, 84, 28, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-dark);
  font-weight: 900;
}

.process-step h3,
.process-highlights h3,
.certification-card h3,
.export-banner h3,
.contact-reasons h3 {
  color: var(--green-dark);
}

.process-step p,
.process-highlights p,
.sop-card li,
.certification-card p,
.certification-intro,
.export-banner p,
.contact-reasons p {
  margin: 10px 0 0;
  color: #202015;
}

.process-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.sop-flow-chart {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.sop-flow-card {
  grid-column: span 3;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(49, 84, 28, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sop-flow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sop-flow-card.sop-flow-wide {
  grid-column: span 4;
}

.sop-flow-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.sop-flow-card h3 {
  color: var(--green-dark);
}

.sop-flow-card p {
  margin: 10px 0 0;
  color: #202015;
  font-size: 1rem;
}

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

.process-highlights article,
.sop-card,
.certification-card,
.contact-reasons article,
.map-panel {
  border: 1px solid rgba(49, 84, 28, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
}

.process-highlights article {
  padding: 22px;
}

.sop-card {
  padding: 24px;
}

.sop-card .process-number {
  margin-bottom: 16px;
}

.sop-card h3 {
  color: var(--green-dark);
}

.sop-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.facility-gallery {
  margin-top: 42px;
}

.facility-gallery-heading {
  margin-bottom: 22px;
  text-align: center;
}

.facility-gallery-heading h3 {
  color: var(--green-dark);
}

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

.facility-photo {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
}

.facility-photo.feature-photo {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 478px;
}
.unit-photo {
    grid-column: span 3;
    min-height: 250px;
}

.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.facility-photo:hover img {
  transform: scale(1.04);
}

.facility-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(49, 84, 28, 0.9);
  color: var(--white);
  font-weight: 900;
}

.certifications-section {
  background: var(--white);
}

.certification-intro {
  max-width: 920px;
  margin: -18px auto 36px;
  text-align: center;
  font-weight: 700;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.certification-card {
  padding: 24px;
  text-align: center;
}

.certification-logo {
  display: grid;
  place-items: center;
  min-height: 112px;
  margin-bottom: 20px;
  border: 1px solid rgba(49, 84, 28, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
}

.certification-logo img {
  width: 100%;
  max-width: 185px;
  max-height: 112px;
  object-fit: contain;
}

.export-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(49, 84, 28, 0.92), rgba(49, 84, 28, 0.92)),
    url("./assets/basket-field.png") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.export-banner h3,
.export-banner p {
  color: var(--white);
}

.contact-section {
  background: #f3ecd9;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 82px;
}

.contact-info-card {
  min-height: 185px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(49, 84, 28, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #d7f5dc;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-info-card h3,
.message-panel h3,
.why-contact-panel h3,
.why-contact-list h4 {
  color: var(--green-dark);
}

.contact-info-card p {
  margin: 8px 0 0;
  color: #202015;
  font-weight: 700;
}

.contact-info-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-underline-offset: 5px;
}

.contact-message-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.message-panel h3,
.why-contact-panel h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
}

.message-intro {
  margin: 14px 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.message-panel .quote-form {
  padding: clamp(24px, 3vw, 34px);
}

.why-contact-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.why-contact-list article {
  padding: 20px 22px;
  border: 2px solid var(--green-bright);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.why-contact-list article:nth-child(2) {
  border-color: var(--peanut);
}

.why-contact-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.why-contact-panel .map-panel {
  margin-top: 22px;
  border: 1px solid rgba(49, 84, 28, 0.18);
  border-radius: var(--radius);
  background: #d7f5dc;
  box-shadow: 0 12px 26px rgba(54, 43, 29, 0.1);
}

.why-contact-panel .map-panel iframe {
  min-height: 315px;
}

.map-link {
  display: block;
  padding: 14px 18px;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.contact-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.contact-reasons article {
  padding: 24px;
}

.contact-reasons span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 32px;
}

.contact-panel,
.quote-form {
  padding: clamp(26px, 4vw, 42px);
}

.contact-panel {
  background:
    linear-gradient(rgba(49, 84, 28, 0.9), rgba(49, 84, 28, 0.9)),
    url("./assets/harvest-hand.png") center / cover no-repeat;
  color: var(--white);
}

.contact-panel h3 {
  margin-bottom: 20px;
  color: var(--white);
}

.contact-panel address {
  font-style: normal;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-lines p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.contact-lines a {
  color: var(--white);
  font-weight: 900;
  text-underline-offset: 5px;
}

.hours {
  margin: 0;
  color: #ecf4de;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--green-dark);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 52px;
  width: 100%;
  border: 2px solid rgba(49, 84, 28, 0.25);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(111, 181, 31, 0.26);
  border-color: var(--green);
}

.submit-button {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  border-radius: var(--radius);
  text-transform: uppercase;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.form-status.error {
  color: #9c2f1c;
}

.map-panel {
  overflow: hidden;
  margin-top: 32px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 24px 6vw;
  color: var(--white);
  background: #49ad4f;
  font-size: clamp(1.08rem, 2vw, 1.6rem);
  font-weight: 800;
  text-align: center;
}

.business-footer {
  padding: 74px 6vw 54px;
  background: #125f34;
  color: var(--white);
}

.business-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.75fr) minmax(200px, 0.95fr) minmax(260px, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.business-footer h3 {
  margin: 0 0 22px;
  color: #ffb41f;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.business-footer p,
.business-footer a {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

.business-footer-brand img {
  width: clamp(122px, 11vw, 168px);
  height: clamp(122px, 11vw, 168px);
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

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

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: #178844;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}

.footer-links,
.footer-products,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 860px) {
  :root {
    --nav-height: 88px;
  }

  .site-header {
    padding: 0 22px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .brand {
    gap: 10px;
    font-size: 1.42rem;
  }

  .brand-logo {
    width: 104px;
    height: 104px;
    transform: translateY(-4px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    background: var(--green-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .hero {
    min-height: 680px;
    min-height: max(680px, 100svh);
    padding: calc(var(--nav-height) + 72px) 22px 64px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(10, 32, 14, 0.72), rgba(14, 42, 17, 0.34) 45%, rgba(10, 28, 10, 0.78)),
      linear-gradient(90deg, rgba(18, 48, 17, 0.62), rgba(88, 102, 43, 0.22) 54%, rgba(21, 62, 24, 0.58)),
      #31541c;
    filter: saturate(1.04) contrast(1.04);
    overflow: hidden;
    transform: scale(1.04);
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.62)),
      radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.3) 72%);
  }

  .hero-media video {
    object-fit: cover;
    object-position: 52% 40%;
    background: #31541c;
    filter: saturate(1.1) contrast(1.06) brightness(0.94);
    transform: scale(1.72);
    transform-origin: 52% 40%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 11.5vw, 4.15rem);
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .section-pad {
    padding: 66px 22px;
  }

  .values-stage,
  .split-grid,
  .about-grid,
  .product-grid,
  .process-grid,
  .sop-flow-chart,
  .sop-pillars,
  .process-highlights,
  .facility-photo-grid,
  .certification-grid,
  .export-banner,
  .contact-info-cards,
  .contact-message-grid,
  .contact-reasons,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-stage {
    padding: 38px 18px;
    gap: 18px;
    border-radius: 26px;
  }

  .value-card {
    min-height: 0;
  }

  .split-grid h2 {
    text-align: center;
  }

  .process-video-frame,
  .process-video-frame video {
    min-height: 360px;
  }

  .process-step {
    grid-template-columns: 62px 1fr;
    padding: 20px;
  }

  .process-timeline::before {
    left: 31px;
  }

  .process-number {
    width: 52px;
    height: 52px;
  }

  .sop-flow-card,
  .sop-flow-card.sop-flow-wide {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .facility-photo,
  .facility-photo.feature-photo {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .export-banner {
    text-align: center;
  }

  .contact-info-cards {
    gap: 18px;
    margin-bottom: 46px;
  }

  .contact-info-card {
    min-height: 0;
  }

  .map-panel iframe {
    min-height: 300px;
  }

  .site-footer {
    display: grid;
    text-align: center;
  }

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

  .business-footer {
    padding: 58px 22px 42px;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 8px;
    font-size: 1.06rem;
  }

  .brand-logo {
    width: 86px;
    height: 86px;
    transform: translateY(-2px);
  }

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

  h2 {
    font-size: 2.25rem;
  }
}
