@charset "UTF-8";
:root {
  --g: #5DC840;
  --gh: #75D858;
  --ow: #F9FBF9;
  --mu: #546E7A;
  --dk: #113008;
  --shg: 0 8px 32px rgba(46, 125, 50, 0.18);
  --tr: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

#wrapper-navbar {
  padding: 0;
  margin: 0;
  background: transparent;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  height: var(--nav-h);
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--tr), background var(--tr);
}

.nav.is-scrolled {
  background: #fff;
  box-shadow: 0 4px 24px rgba(17, 48, 8, 0.1);
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo a {
  display: block;
  text-decoration: none;
  color: var(--dk);
  font-weight: 800;
  font-size: 18px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links > .menu-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible,
.current-menu-item > .nav-link,
.current-menu-ancestor > .nav-link {
  color: var(--g);
  background: rgba(93, 200, 64, 0.08);
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--tr);
}

.has-dropdown:hover > .nav-link .nav-chevron,
.has-dropdown:focus-within > .nav-link .nav-chevron {
  transform: rotate(225deg) translateY(1px);
}

/* ── Desktop dropdown panels ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(17, 48, 8, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(17, 48, 8, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 210;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item--mega > .nav-dropdown {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: min(640px, 92vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 12px;
}

.nav-item--mega:hover > .nav-dropdown,
.nav-item--mega:focus-within > .nav-dropdown {
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible,
.nav-dropdown .current-menu-item > .nav-dropdown__link {
  background: rgba(93, 200, 64, 0.1);
  color: var(--dk);
}

.nav-dropdown__list {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: 0;
  padding: 4px 0 0 12px;
  min-width: 0;
  background: transparent;
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: all var(--tr);
}

.nav-ham.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-ham.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-ham.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: #113008;
  z-index: 199;
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links > .menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-link:hover,
.mobile-nav-toggle:hover {
  color: var(--g);
}

.mobile-nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--tr);
  flex-shrink: 0;
}

.mobile-has-children.is-open > .mobile-nav-toggle .mobile-nav-chevron {
  transform: rotate(225deg);
}

.mobile-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
  display: none;
}

.mobile-has-children.is-open > .mobile-sub-menu {
  display: block;
}

.mobile-sub-menu .mobile-nav-link {
  font-size: 14px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  align-items: stretch;
}

.btn-gs {
  background: transparent;
  color: var(--dk);
  border: 1px solid rgba(17, 48, 8, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-gs:hover {
  border-color: var(--g);
  color: var(--g);
}

.btn-cs {
  background: var(--g);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shg);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-cs:hover {
  background: var(--gh);
  transform: translateY(-1px);
}

.mobile-cta-wrapper .btn-gs {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-cta-wrapper .btn-gs:hover {
  color: var(--g);
  border-color: var(--g);
}

body.mmc-nav-open {
  overflow: hidden;
}

/* Default WP pages / posts still on old markup */
body.mmc-modern .about-us-header {
  padding-top: calc(var(--nav-h) + 24px);
}

body.mmc-modern .main-content {
  padding-bottom: 48px;
}

body.mmc-modern .site-main a:not([class]) {
  color: var(--g);
}

.mmc-about-page,
.mmc-contact-page,
.mmc-product-single,
.mmc-page {
  padding-top: var(--nav-h);
}

.mmc-page .hero {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .nav {
    padding: 0 24px;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  .nav-ham {
    display: flex;
  }
  .nav-ham span {
    background: #5dc840;
  }
}
/* MapMyCrop About Page — from design system v2.0 */
.mmc-about-page {
  font-family: var(--font-body);
  color: var(--t-body);
  background: var(--bg-white);
}
.mmc-about-page .section-head .h2,
.mmc-about-page .section .h2 {
  color: var(--t-ink);
}
.mmc-about-page .hero-banner .h1,
.mmc-about-page .hero-banner .h2,
.mmc-about-page .hero-banner .hero-banner__subtitle {
  color: #fff;
}
.mmc-about-page .hero-banner .h1 .highlight,
.mmc-about-page .hero-banner .h2 .highlight {
  color: var(--c-green-leaf);
}
.mmc-about-page .hero-banner .h1 .grad,
.mmc-about-page .hero-banner .h2 .grad {
  background: linear-gradient(135deg, var(--c-green), var(--c-green-leaf));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   MapMyCrop — Master Design System Stylesheet v2.0
   Single source of truth for all 3 pages (index, contact, about)
   ============================================================

   TOKEN MANIFEST
   ─────────────────────────────────────────────────────────────
   COLOUR PALETTE
   Primary greens:   --c-green #5BBA35 · --c-green-bright #7BCC3F
                     --c-green-leaf #9BD64A · --c-green-mid #4FA52B
                     --c-green-deep #3F8F2A · --c-ink-green #16310F
   Accents:          --c-lime #E4F25C (CTA) · --c-lime-hover #EEF76E
                     --c-lime-band #DBE84F · --c-lime-pill #CFE25A
                     --c-lime-soft #EAF0C2 · --c-highlight #C4E24A
                     --c-industry #76B21C · --c-orange #E07B2A
   Backgrounds:      --bg-white #FFFFFF · --bg-cream #F7F3E7 (nav)
                     --bg-sage #DDE6CE · --bg-mint #F6F8F0
                     --bg-soil #2B2013 (hero)
   Text:             --t-ink #26331C · --t-ink-2 #1D3A16
                     --t-body #4B5043 · --t-body-2 #5B6052
                     --t-body-3 #7A8070 · --t-label #8A907E
                     --t-on-dark #FFFFFF · --t-on-dark-mut #C2CCB6

   TYPOGRAPHY SCALE
   Display/Headings: 'Plus Jakarta Sans', system-ui (--font-display)
   Body/UI:          'Inter', system-ui (--font-body)
   H1:  clamp(40px,5vw,68px)   / wt 800 / lh 1.02  / ls -1.5px
   H2:  clamp(32px,4.6vw,54px) / wt 800 / lh 1.08  / ls -1px
   H3:  clamp(16px,1.4vw,19px) / wt 700 / lh 1.25
   H4:  16px                   / wt 700 / lh 1.30
   body-l: clamp(16px,1.3vw,18px) / wt 500 / lh 1.65
   body:   15px                   / wt 500 / lh 1.55
   caption: 13.5px               / wt 500
   eyebrow: 12px / wt 700 / ls 2px / UPPERCASE
   micro:   10px / wt 700 / ls 0.8px / UPPERCASE

   SPACING (4/8 grid)
   --s-1:4px --s-2:8px --s-3:12px --s-4:16px --s-5:24px
   --s-6:32px --s-7:48px --s-8:64px --s-9:96px

   RADII
   --r-pill:999px --r-chip:10px --r-btn:12px --r-card:16px --r-panel:20px

   SECTION PADDING
   All sections: padding-block: clamp(48px, 6vw, 96px)
   Hero banners: padding-block: clamp(40px, 5vw, 72px)
   Nav strip:    padding-block: 18px

   ELEVATION
   --shadow-card:  0 10px 26px rgba(40,55,25,0.10)
   --shadow-panel: 0 20px 50px rgba(40,55,25,0.12)

   LAYOUT
   --container: 1320px · --gutter: clamp(20px,4vw,56px)
   12-column grid: .grid-12 · spans: .col-3 .col-4 .col-5 .col-6 .col-7 .col-12
   ============================================================ */
/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Primary — brand greens */
  --c-green: #5BBA35; /* stat figures, headline accents */
  --c-green-bright: #7BCC3F; /* hover / leaf */
  --c-green-leaf: #9BD64A;
  --c-green-mid: #4FA52B; /* wordmark on cream */
  --c-green-deep: #3F8F2A; /* active links */
  --c-ink-green: #16310F; /* dark buttons, footer */
  /* Secondary / accents */
  --c-lime: #E4F25C; /* primary CTA */
  --c-lime-hover: #EEF76E;
  --c-lime-band: #DBE84F; /* 360 badge, tier buttons */
  --c-lime-pill: #CFE25A; /* eyebrow pills */
  --c-lime-soft: #EAF0C2; /* tier tag pill */
  --c-highlight: #C4E24A; /* text highlighter swash */
  --c-industry: #76B21C; /* industry card band */
  --c-orange: #E07B2A; /* alert */
  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-cream: #F7F3E7; /* navbar / logo strip */
  --bg-sage: #DDE6CE; /* proven results, recognition */
  --bg-mint: #F6F8F0; /* demo */
  --bg-soil: #2B2013; /* hero */
  /* Text */
  --t-ink: #26331C;
  --t-ink-2: #1D3A16;
  --t-body: #4B5043;
  --t-body-2: #5B6052;
  --t-body-3: #7A8070;
  --t-label: #8A907E;
  --t-on-dark: #FFFFFF;
  --t-on-dark-mut:#C2CCB6;
  /* Spacing — strict 4 / 8 scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  /* Radii */
  --r-pill: 999px;
  --r-chip: 10px;
  --r-btn: 12px;
  --r-card: 16px;
  --r-panel: 20px;
  /* Elevation */
  --shadow-card: 0 10px 26px rgba(40,55,25,0.10);
  --shadow-panel: 0 20px 50px rgba(40,55,25,0.12);
  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  /* Motion */
  --transition: all 0.2s ease;
  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--t-body);
  background: var(--bg-white);
}

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

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ---------- 3. LAYOUT — container (Bootstrap row/col for grids) ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* section vertical rhythm */
.section {
  padding-block: clamp(48px, 6vw, 96px);
}

.section--cream {
  background: var(--bg-cream);
}

.section--sage {
  background: var(--bg-sage);
}

.section--mint {
  background: var(--bg-mint);
}

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

.section--dark {
  background: var(--c-ink-green);
  color: var(--t-on-dark);
}

/* ---------- 4. TYPOGRAPHY ---------- */
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: var(--t-ink);
  margin: 0;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--t-ink);
  margin: 0;
}

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.25;
  color: var(--t-ink-2);
  margin: 0;
}

.h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.micro {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--t-body-3);
}

.body-l {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--t-body);
}

.body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: var(--t-body-2);
}

.caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--t-body-3);
}

/* lime highlighter swash behind text */
.highlight {
  color: var(--c-green-deep);
  background-image: linear-gradient(transparent 56%, var(--c-highlight) 56%, var(--c-highlight) 92%, transparent 92%);
  padding: 0 4px;
}

/* ---------- 5. COMPONENTS ---------- */
/* eyebrow pill */
.pill {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--s-2) 18px;
  border-radius: var(--r-pill);
}

.pill--lime {
  background: var(--c-lime-pill);
  color: var(--c-ink-green);
}

.pill--dark {
  background: var(--c-ink-green);
  color: var(--t-on-dark);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: var(--s-4) 30px;
  border: none;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: var(--transition);
}

.btn--primary {
  background: var(--c-lime);
  color: var(--c-ink-green);
  box-shadow: 0 10px 28px rgba(228, 242, 92, 0.24);
}

.btn--primary:hover {
  background: var(--c-lime-hover);
}

.btn--dark {
  background: var(--c-ink-green);
  color: var(--t-on-dark);
}

.btn--dark:hover {
  background: #1F4517;
}

.btn--outline {
  background: rgba(91, 186, 53, 0.1);
  color: #EAF3DA;
  border: 1.5px solid rgba(155, 214, 74, 0.5);
}

.btn--outline:hover {
  background: rgba(91, 186, 53, 0.2);
  border-color: var(--c-green-leaf);
}

/* cards */
.card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(40, 55, 25, 0.16);
}

.card--accent-left {
  border-left: 5px solid var(--c-green-bright);
}

.card--accent-top {
  border-top: 3px solid var(--c-green-bright);
}

/* panel (large surface: forms, hero device) */
.panel {
  background: var(--bg-white);
  border-radius: var(--r-panel);
  box-shadow: var(--shadow-panel);
  border: 1px solid #EEF0E6;
}

/* stat figure */
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--c-green);
}

.stat__label {
  margin-top: var(--s-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--t-body-2);
}

/* form fields */
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t-label);
  margin-bottom: 7px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #DFE3D6;
  border-radius: var(--r-chip);
  background: #F7F9F1;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--t-ink);
  transition: var(--transition);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-green-bright);
}

/* info row (contact details) */
.info-row {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}

.info-row__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--r-chip);
  background: #e6efce;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green-deep);
}

.info-row__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.info-row__icon--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-green-leaf);
}

/* page banner image — matches contact-hero footprint */
.page-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 3.2/1;
  min-height: 240px;
  border-radius: var(--r-panel);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.page-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 7, 4, 0.62), rgba(9, 7, 4, 0.18) 60%, rgba(9, 7, 4, 0));
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vw, 56px);
}

/* addressing global challenges — green panels w/ scroll reveal */
.challenge-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.challenge-panel {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  background: var(--c-ink-green);
  border-radius: var(--r-card);
  padding: clamp(20px, 2vw, 28px) clamp(22px, 2.2vw, 32px);
  box-shadow: var(--shadow-card);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Offset is applied ONLY after JS arms it — so a non-running transition can never hide content */
.challenge-panel.is-armed {
  opacity: 0;
  transform: translateX(64px);
}

.challenge-panel.is-armed.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.challenge-panel.is-armed:nth-child(1) {
  transition-delay: 0.05s;
}

.challenge-panel.is-armed:nth-child(2) {
  transition-delay: 0.2s;
}

.challenge-panel.is-armed:nth-child(3) {
  transition-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .challenge-panel.is-armed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.challenge-panel__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--r-chip);
  background: rgba(155, 214, 74, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green-leaf);
}

.challenge-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--c-lime);
  margin: 0 0 6px;
}

.challenge-panel__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--t-on-dark-mut);
  margin: 0;
}

/* impact stat cards — lime */
.impact-card {
  background: var(--c-green-deep);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: clamp(36px, 4vw, 56px) var(--s-5) clamp(40px, 4.5vw, 60px);
  text-align: center;
  transition: var(--transition);
}

.impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(40, 55, 25, 0.16);
}

.impact-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.impact-card__label {
  margin-top: var(--s-4);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.82);
}

/* ===== TEAM: static anchor + 2x2 carousel (height-locked bento) ===== */
.team-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 2fr;
  gap: clamp(20px, 2vw, 28px);
  align-items: stretch;
}

.team-photo {
  position: relative;
  width: 100%;
  height: 100%;
  background: #e9ebe6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.team-photo svg {
  width: 64%;
  height: auto;
  display: block;
}

/* anchor (Neil) — photo top, lime panel bottom; stretches to match the right column */
.team-anchor {
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-white);
  transition: var(--transition);
  height: 100%;
  min-height: 100%;
}

.team-anchor:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(40, 55, 25, 0.16);
}

.team-anchor .team-photo {
  min-height: 300px;
}

.team-anchor__panel {
  background: var(--c-lime);
  padding: clamp(20px, 2vw, 28px);
}

.team-anchor__panel .team-name {
  color: #1a1a1a;
}

.team-anchor__panel .team-role {
  color: #2c2c2c;
}

.team-anchor__panel .team-social {
  background: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

/* carousel holds ONLY the track, so anchor height locks to the 2 stacked cards + gap */
.team-carousel {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.team-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
  min-width: 0;
  min-height: 480px;
}

/* team card (horizontal: photo + green panel), identical dimensions */
.team-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-white);
  transition: var(--transition);
  min-height: 230px;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(40, 55, 25, 0.16);
}

.team-card__panel {
  background: var(--c-green-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: clamp(18px, 1.8vw, 26px);
}

.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.team-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.team-social {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 4px;
  text-decoration: none;
}

/* arrows — sit BELOW the height-locked row so they never affect the lock */
.team-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 40px);
  grid-column: 1;
}

.team-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--r-chip);
  border: 1.5px solid #c5ccba;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-green);
  cursor: pointer;
  transition: var(--transition);
}

.team-arrow:hover {
  background: var(--c-lime-band);
  border-color: var(--c-lime-band);
}

.team-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .team-layout {
    grid-template-columns: 1fr;
  }
  .team-anchor .team-photo {
    min-height: 360px;
  }
  .team-carousel {
    height: auto;
  }
  .team-slide {
    min-height: 0;
  }
  .team-nav {
    grid-column: auto;
    justify-content: center;
  }
}
@media (max-width: 620px) {
  .team-slide {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .team-card {
    min-height: 200px;
  }
}
/* location cards — strict 3x2 grid, uniform height */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.loc-card {
  display: flex;
  flex-direction: column;
  background: var(--c-ink-green);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.loc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(40, 55, 25, 0.16);
}

.loc-card__media {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}

.loc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--s-5);
  gap: var(--s-3);
}

.loc-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--t-on-dark);
  margin: 0;
}

.loc-card__addr {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--t-on-dark-mut);
  margin: 0;
}

.loc-card__rows {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-4);
}

.loc-card__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  background: rgba(123, 204, 63, 0.16);
  border: 1px solid rgba(155, 214, 74, 0.22);
  border-radius: var(--s-2);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #e8f3da;
  text-decoration: none;
  transition: var(--transition);
}

.loc-card__row:hover {
  background: rgba(123, 204, 63, 0.28);
}

.btn--nav-primary {
  background: var(--c-lime);
  color: var(--c-ink-green);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border: 1.5px solid var(--c-lime);
  border-radius: var(--r-btn);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--nav-primary:hover {
  background: var(--c-lime-hover);
  border-color: var(--c-lime-hover);
}

.btn--nav-outline {
  background: var(--c-ink-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border: 1.5px solid var(--c-ink-green);
  border-radius: var(--r-btn);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--nav-outline:hover {
  background: #1F4517;
  border-color: #1F4517;
}

/* footer */
.footer {
  background: var(--c-ink-green);
  color: var(--t-on-dark);
}

.footer__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8FA07E;
  margin: 0 0 20px;
}

.footer__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.4;
  color: #DFE6D6;
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--c-green-leaf);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__social {
  width: 42px;
  height: 42px;
  border-radius: var(--r-chip);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social:hover {
  background: rgba(255, 255, 255, 0.16);
}

.badge {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: #DFE6D6;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: var(--s-2) 14px;
  border-radius: var(--s-2);
}

.yellow-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--c-lime-band);
  border-radius: var(--r-panel);
  padding: 36px 58px 24px;
  box-shadow: 0 14px 30px rgba(178, 196, 40, 0.28);
  position: relative;
}

.banner-number-row {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}

.centered-digits {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 7vw, 70px);
  line-height: 1;
  color: var(--c-ink-green);
  letter-spacing: -1px;
}

.absolute-degree {
  position: absolute;
  left: 100%;
  top: 0.1em;
  font-size: 0.5em;
  line-height: 1;
}

.banner-text-row {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--c-ink-green);
}

.content-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-text-unit {
  display: flex;
  flex-direction: column;
}

.section-head {
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ===== pre-footer: investment opportunities — 2-col image + white text block ===== */
.invest-block {
  background: #FFFFFF;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 3.2vw, 48px) clamp(24px, 3vw, 44px);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* visual weight hugs the left edge */
  gap: clamp(16px, 1.6vw, 22px); /* consistent element rhythm on the 4/8 grid */
}

.invest-block > * {
  width: 100%;
  margin: 0;
} /* full-width blocks so text-align:left governs cleanly */
.invest-block__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.25vw, 16.5px);
  line-height: 1.65;
  color: var(--t-body);
}

.invest-block__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: var(--s-2);
}

.invest-img {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 320px;
  height: 100%;
  background-image: linear-gradient(116deg, #3f7d2a 0%, #6fa23e 26%, #d8cf5a 50%, #e7d83f 64%, #4f9a3a 84%, #2e6b22 100%);
  background-size: cover;
  background-position: center;
}

/* ===== 'We're here to help' CTA + centered social strip ===== */
.help-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 22px);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-chip); /* rounded square — mirrors global footer icon shape */
  border: 1.5px solid var(--c-green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-green);
  background: rgba(22, 49, 15, 0.06);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--c-green-mid);
  border-color: var(--c-green-mid);
  color: #fff;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  flex-shrink: 0;
}

.social-icon img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.mmc-about-page .social-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  flex-shrink: 0;
}

.mmc-about-page .social-icon img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .social-icon {
    width: 46px;
    height: 46px;
  }
}
/* ============================================================
   GLOBAL HERO BANNER COMPONENT — reusable blueprint
   Usage:
     <section class="hero-banner">
       <div class="container hero-banner__inner">
         <div class="section-head" style="margin-bottom:0;">
           <span class="pill"> eyebrow </span>
           <h1 class="h1"> title </h1>
         </div>
       </div>
     </section>
   Spec: dark-soil background + tilled texture + corner glow,
   container-width content, vertical padding clamp(48px,6vw,84px).
   Identical height/padding/footprint on every internal landing page.
   ============================================================ */
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 450px; /* definitive global hero height — identical on every page */
  display: flex;
  align-items: center;
  background-color: var(--bg-soil);
}

.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(118deg, rgba(0, 0, 0, 0.28) 0, rgba(0, 0, 0, 0.28) 3px, rgba(120, 86, 46, 0.1) 3px, rgba(120, 86, 46, 0.1) 30px), radial-gradient(135% 120% at 80% 0%, rgba(86, 62, 34, 0.55), rgba(36, 26, 15, 0) 45%), linear-gradient(180deg, rgba(8, 14, 5, 0.55) 0%, rgba(8, 14, 5, 0.72) 100%);
}

.hero-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(40px, 5vw, 72px);
}

@media (max-width: 700px) {
  .hero-banner {
    min-height: 380px;
  }
}
.hero-banner .pill {
  border: 1px solid rgba(155, 214, 74, 0.4);
  background: rgba(91, 186, 53, 0.1);
  color: #bfe78a;
  letter-spacing: 1.3px;
}

.hero-banner .h1, .hero-banner .h2 {
  color: #fff;
}

/* hero subtitle — mirrors Contact hero body language; 2-line balanced fit */
.hero-banner__subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: #c9c3b8;
  text-wrap: balance;
}

/* ---------- 6. RESPONSIVE ---------- */
@media (max-width: 900px) {
  .loc-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2vw, 28px);
  }
}
@media (min-width: 901px) and (max-width: 1140px) {
  .loc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 2vw, 28px);
  }
  .loc-grid .loc-card {
    flex: 0 0 calc(50% - 14px);
  }
}
.about-story__image-wrap {
  height: 100%;
  min-height: 320px;
  border-radius: var(--r-panel);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
  background: #c8d4b8;
}

.about-story__image-wrap img {
  min-height: 620px;
}

.about-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.about-story__content p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--t-body-2);
  margin: 0;
}

.about-story__content p strong {
  color: var(--t-ink-2);
  font-weight: 700;
}

.about-team-layout:not(:has(.team-anchor)) {
  grid-template-columns: 1fr;
}

.about-team-layout:not(:has(.team-anchor)) .team-carousel {
  grid-column: 1/-1;
}

.about-product-card {
  overflow: hidden;
  background: var(--c-ink-green);
  display: flex;
  flex-direction: column;
}

.about-product-card__image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.about-product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-product-card__title {
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.about-team-layout {
  margin-top: clamp(40px, 5vw, 60px);
}

.about-team-layout .team-nav {
  justify-content: center;
  margin: 15px auto;
  width: 300%;
}

.about-challenge-panel__icon img {
  max-height: 72px;
  width: auto;
  height: auto;
  display: block;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-photo--placeholder {
  align-items: flex-end;
  justify-content: center;
}

.about-team-photo--placeholder svg {
  width: 64%;
  height: auto;
}

.about-invest-img-wrap {
  height: 100%;
  min-height: 320px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #b8c98a;
}

.about-invest-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.about-hero-banner .section-head {
  margin-bottom: 0;
  gap: clamp(16px, 2vw, 22px);
}

.about-hero-banner .h1 {
  font-size: clamp(36px, 4.8vw, 60px);
}

.about-section-head--flush {
  margin-bottom: 0;
}

.about-team-section__description {
  max-width: 760px;
  color: var(--t-body-2);
}

.about-highlight {
  margin: auto;
  background-image: url(../images/title-underline.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 10px;
  background-size: 100%;
  display: inline-block;
  color: #113008;
  /* background-image: linear-gradient(transparent 64%, var(--c-highlight) 64%, var(--c-highlight) 96%, transparent 96%); */
}

.about-highlight--help {
  margin: auto;
  background-image: url(../images/title-underline.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 10px;
  background-size: 100%;
  display: inline-block;
  color: #113008;
}

.about-mission-badge {
  margin-bottom: 14px;
  display: inline-flex;
}

.about-section-badge {
  margin-bottom: 12px;
}

.about-invest-title {
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--c-ink-green);
}

.about-help-badge {
  margin-bottom: 16px;
  display: inline-block;
}

footer {
  --ow: #F9FBF9;
  --bd: rgba(46, 125, 50, 0.10);
  --mu: #546E7A;
  --g: #5DC840;
  --bdg: rgba(215, 232, 215, 0.5);
  --dk: #113008;
  background: #0E1C0A;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 70px 0 40px;
}
footer .con {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
footer .fg-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer .fdesc {
  font-size: 14px;
  color: var(--ow);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 12px;
}
footer .fso {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
footer .fsoc {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bd);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--ow);
}
footer .fsoc:hover {
  background: rgba(140, 198, 63, 0.12);
  border-color: var(--bdg);
  color: var(--g);
}
footer h5,
footer .fc h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
footer .fl {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0;
  list-style: none;
}
footer .fl a {
  font-size: 13px;
  color: var(--ow);
  transition: color 0.2s;
}
footer .fl a:hover {
  color: var(--g);
}
footer .fbot {
  border-top: 1px solid var(--bd);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .fbot p {
  font-size: 12px;
  color: var(--ow);
  margin: 0;
}
footer .fbot a {
  color: var(--g);
}
footer .fbadges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
footer .fbadge {
  background: var(--ow);
  border: 1px solid var(--bd);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--mu);
  font-weight: 600;
}

.footer-widget p {
  margin-top: 20px;
  color: #ffffff;
  font-size: 16px;
}

@media (max-width: 1024px) {
  footer .fg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  footer .fg-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  footer .con {
    padding: 0 20px;
  }
}

/*# sourceMappingURL=about-page.css.map */
