:root {
  --ink: #1c2a1e;
  --green: #2e5834;
  --green-deep: #20401f;
  --gold: #e3a72f;
  --gold-soft: #f5e4bc;
  --paper: #fbf9f3;
  --field: #eef2e6;
  --line: #d8dccb;
  --body: "Public Sans", system-ui, sans-serif;
  --display: "Bitter", Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  font-weight: 700;
}

a {
  color: var(--green);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-deep);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size:1rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--green-deep);
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: transparent;
  border: 0;
  font: inherit;
  font-size:1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(1px);
}

.nav-dropdown-toggle:hover {
  color: var(--green);
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(28, 42, 30, 0.12);
  padding: 8px;
  z-index: 60;
}

.nav-dropdown.open .nav-dropdown-panel {
  display: block;
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size:1rem;
  color: var(--ink);
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  background: var(--field);
  color: var(--green-deep);
}

.nav-product-featured {
  font-weight: 600;
  color: var(--green-deep) !important;
  border-left: 3px solid var(--gold);
  padding-left: 9px !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--green-deep);
  border-radius: 2px;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--field) 0%, var(--paper) 100%);
  padding: 96px 0 72px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 17ch;
  color: var(--green-deep);
}

.hero .lede {
  font-size: 1.2rem;
  max-width: 56ch;
  margin: 24px 0 8px;
  color: #3a4a3c;
}

.hero .place {
  font-weight: 600;
  color: var(--green);
  margin-bottom: 36px;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-deep);
}

.btn-ghost {
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-ghost:hover {
  background: var(--field);
}

/* IMPACT BAND */
.impact {
  background: var(--green-deep);
  color: #fff;
  padding: 52px 0;
}

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

@media (max-width: 760px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.impact-item .num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.impact-item .lbl {
  font-size:1rem;
  color: #d9e2d2;
  max-width: 24ch;
}

/* SECTION HEADINGS */
.kicker {
  color: var(--gold);
  font-weight: 600;
  font-size:1rem;
  margin-bottom: 8px;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--green-deep);
  max-width: 24ch;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 62ch;
  color: #3a4a3c;
  margin-bottom: 40px;
}

.section-intro.tight {
  margin-bottom: 16px;
}

.body-copy {
  max-width: 60ch;
  color: #3a4a3c;
}

/* VALUE CHAIN */
.chain {
  background: var(--field);
}

.chain-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.chain-step {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  position: relative;
}

.chain-step:last-child {
  border-right: none;
}

.chain-step h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 8px;
}

.chain-step p {
  font-size:1rem;
  color: #4a574b;
}

.chain-step .arrow {
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  font-size:1rem;
}

.chain-step:last-child .arrow {
  display: none;
}

.chain-loop {
  margin-top: 22px;
  background: var(--gold-soft);
  border-radius: 8px;
  padding: 20px 24px;
  font-size:1rem;
  max-width: 72ch;
}

.chain-loop strong {
  color: var(--green-deep);
}

/* DIVISIONS */
.div-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.div-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 26px;
}

.div-card h3 {
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.div-card p {
  font-size:1rem;
  color: #3a4a3c;
}

.div-card .fact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size:1rem;
  font-weight: 600;
  color: var(--green-deep);
}

/* FARMERS */
.farmers {
  background: var(--field);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.pledge-list {
  list-style: none;
  margin-top: 8px;
}

.pledge-list li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.pledge-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  clip-path: polygon(14% 44%, 0 62%, 42% 100%, 100% 16%, 84% 4%, 40% 70%);
}

.pledge-list li strong {
  display: block;
  color: var(--green-deep);
}

/* ORGANICS */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.org-card {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.org-card h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 8px;
}

.org-card p {
  font-size:1rem;
  color: #3a4a3c;
}

/* EXPANSION */
.exp-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.exp-item:last-of-type {
  border-bottom: none;
}

.exp-item h3 {
  color: var(--green);
  font-size: 1.1rem;
}

.exp-item .tag {
  display: inline-block;
  margin-top: 8px;
  font-size:1rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--gold-soft);
  border-radius: 3px;
  padding: 3px 9px;
}

.exp-item p {
  font-size:1rem;
  color: #3a4a3c;
  max-width: 65ch;
}

/* GOVERNANCE */
.gov {
  background: var(--green-deep);
  color: #eaf0e4;
}

.gov h2 {
  color: #fff;
}

.gov .kicker {
  color: var(--gold);
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 8px;
}

.gov-item h3 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.gov-item p {
  font-size:1rem;
  color: #c9d6c2;
}

/* PARTNER */
.partner .two-col {
  align-items: stretch;
}

.partner-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}

.partner-box h3 {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.partner-box ul {
  margin: 0 0 0 20px;
  font-size:1rem;
  color: #3a4a3c;
}

.partner-box li {
  margin-bottom: 8px;
}

.partner-cta {
  margin-top: 32px;
}

/* CONTACT / FOOTER */
footer,
footer[data-site-footer] {
  background: var(--ink);
  color: #bfcbb8;
  padding: 48px 0 32px;
  font-size:1rem;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.site-footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer-social-link:hover {
  background: var(--gold);
  color: var(--ink);
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 40px;
}

.site-footer-heading {
  color: #fff;
  font-size:1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-list li + li {
  margin-top: 8px;
}

.site-footer-list a {
  color: #d9e2d2;
  text-decoration: none;
}

.site-footer-list a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-copy {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #35402f;
  font-size:1rem;
  color: #8a9682;
}

footer h2 {
  color: #fff;
  font-size: 1.5rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 24px;
}

footer a {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size:1rem;
  padding: 6px 12px;
  border: 1px solid #35402f;
  border-radius: 4px;
}

.social-links a:hover {
  background: #35402f;
  color: #fff;
}

.partner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.partner-form {
  margin-top: 20px;
}

.foot-label {
  color: #fff;
}

.foot-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #35402f;
  font-size:1rem;
  color: #8a9682;
}

@media (max-width: 720px) {
  .site-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    text-align: left;
  }

  .nav-dropdown-panel {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
    min-width: 0;
  }

  .nav-dropdown.open .nav-dropdown-panel {
    display: block;
  }

  .nav-dropdown-panel a {
    padding: 10px 0;
  }

  nav {
    position: sticky;
  }

  .nav-inner {
    position: relative;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .chain-flow {
    grid-template-columns: 1fr;
  }

  .chain-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .chain-step:last-child {
    border-bottom: none;
  }

  .chain-step .arrow {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -11px;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 640px) {
  .exp-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Inner pages */
.page-hero {
  background: var(--field);
  padding: 56px 0 48px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  color: var(--green-deep);
}
.page-hero .lede {
  font-size: 1.15rem;
  max-width: 58ch;
  margin-top: 18px;
  color: #3a4a3c;
}
.breadcrumb {
  font-size:1rem;
  margin-bottom: 14px;
  color: #5a675c;
}
.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}
.prose {
  max-width: 68ch;
}
.prose p {
  margin-bottom: 16px;
  color: #3a4a3c;
}
.prose h2 {
  margin-top: 36px;
}
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.related a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
}
.related a:hover {
  border-color: var(--green);
}
.related h3 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.related p {
  font-size:1rem;
  color: #3a4a3c;
}
.page-cta {
  background: var(--green-deep);
  color: #eaf0e4;
}
.page-cta h2 {
  color: #fff;
}
.page-cta p {
  max-width: 58ch;
  margin-bottom: 22px;
}
.more-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  text-decoration: none;
}
.foot-list {
  list-style: none;
  margin-top: 8px;
}
.foot-list li {
  margin-bottom: 6px;
}

.foot-detail-label {
  margin-top: 14px;
  color: #fff;
  font-weight: 600;
}

.inbound-form {
  max-width: 440px;
  background: #fff;
  color: var(--ink);
  padding: 22px 24px;
  border-radius: 8px;
  margin-top: 8px;
}
.inbound-form label {
  display: block;
  font-weight: 600;
  font-size:1rem;
  margin-top: 12px;
  color: var(--ink);
}
.inbound-form input,
.inbound-form select,
.inbound-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}
.inbound-form .btn {
  margin-top: 16px;
}
.inbound-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.inbound-status {
  margin-top: 12px;
  font-weight: 600;
}
.inbound-fallback {
  margin-top: 12px;
  font-size:1rem;
}
.inbound-fallback a {
  color: var(--green);
}

button.btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.partner-form.inbound-form {
  max-width: 640px;
  margin-top: 32px;
  border: 1px solid var(--line);
}

/* PHOTOS */
.photo-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  margin: 0;
}

.photo-frame img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.photo-frame figcaption {
  font-size:1rem;
  color: #5a675c;
  padding: 10px 6px 2px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card-photo {
  width: calc(100% + 52px);
  margin: -28px -26px 18px;
  border-radius: 8px 8px 0 0;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* AWARD BAND */
.award-band {
  background: var(--gold-soft);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.award-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.award-medal {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 0 4px #fff;
}

.award-title {
  font-family: var(--display);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1.15rem;
}

.award-sub {
  font-size:1rem;
  color: #5a5133;
  max-width: 80ch;
  margin-top: 4px;
}

/* CUSTOMER PROOF */
.trust-band {
  background: #fff;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.trust-title {
  color: #5a675c;
  font-size:1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.trust-logo {
  width: 150px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.trust-logo-dark {
  background: #1c2a1e;
  border-radius: 6px;
  padding: 8px 16px;
}

.trust-proof {
  border-left: 1px solid var(--line);
  padding-left: 30px;
  max-width: 430px;
}

.trust-proof strong,
.trust-proof span {
  display: block;
}

.trust-proof strong {
  color: var(--green-deep);
}

.trust-proof span {
  color: #5a675c;
  font-size:1rem;
  margin-top: 4px;
}

/* ENGAGE HUB */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .engage-grid {
    grid-template-columns: 1fr;
  }
}

.engage-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  text-align: left;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 26px 24px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.engage-card:hover,
.engage-card:focus-visible {
  border-color: var(--green);
}

a.engage-card {
  text-decoration: none;
  color: inherit;
}

.engage-card:hover .engage-cta,
.engage-card:focus-visible .engage-cta {
  text-decoration: underline;
}

.form-page {
  padding: 0 0 72px;
}

.form-page-photo {
  max-width: 640px;
  margin: 0 auto 24px;
}

.form-page-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 24px;
}

.form-page-card.inbound-form {
  padding: 28px 28px 24px;
}

.engage-card h3 {
  color: var(--green);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.engage-card p {
  font-size:1rem;
  color: #3a4a3c;
  margin-bottom: 14px;
  flex: 1;
}

.engage-cta {
  font-weight: 600;
  color: var(--green-deep);
  font-size:1rem;
}

.engage-panels {
  margin-top: 8px;
}

.engage-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 24px;
  max-width: 640px;
}

.engage-panel[hidden] {
  display: none;
}

.engage-panel .panel-title {
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 12px;
  max-width: none;
}

.engage-panel .panel-intro {
  font-size:1rem;
  color: #3a4a3c;
  margin-bottom: 16px;
  max-width: 58ch;
}

.engage-panel .inbound-form {
  max-width: none;
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.page-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.page-cta-alt {
  margin-top: 16px;
  font-size:1rem;
}

.page-cta-alt a {
  color: var(--gold);
}

.page-cta .btn-ghost {
  border-color: #fff;
  color: #fff;
}

.page-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 42, 30, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 24px;
  box-shadow: 0 16px 48px rgba(28, 42, 30, 0.18);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #5a675c;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.modal-close:hover {
  background: var(--field);
  color: var(--green-deep);
}

.modal-form {
  max-width: none;
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.modal-form .kicker {
  padding-right: 36px;
}

body.modal-open {
  overflow: hidden;
}

.foot-link-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--gold);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-align: left;
}

.foot-link-btn:hover {
  color: #fff;
}

/* COMPANY AND RESPONSIBILITY */
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.editorial-grid-reverse > :first-child {
  order: 2;
}

.editorial-grid-reverse > :last-child {
  order: 1;
}

.narrow-copy {
  max-width: 760px;
}

.narrow-copy p {
  margin-bottom: 18px;
  color: #3a4a3c;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.principle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.principle-number {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.principle-card h3 {
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 9px;
}

.principle-card p {
  color: #3a4a3c;
  font-size:1rem;
}

.mission-panel {
  background: var(--green-deep);
  color: #fff;
  border-radius: 10px;
  padding: 34px 38px;
}

.mission-panel .kicker {
  color: var(--gold);
}

.mission-panel p:last-child {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.3;
  max-width: 34ch;
}

.contact-hero {
  background: var(--field);
  padding: 50px 0 38px;
  text-align: center;
}

.contact-hero .breadcrumb {
  text-align: left;
}

.contact-hero h1 {
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-hero > .wrap > p:last-child {
  color: #3a4a3c;
  margin: 14px auto 0;
  max-width: 52ch;
}

.contact-page {
  background: var(--field);
  padding: 32px 0 76px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.contact-details {
  padding-top: 14px;
}

.contact-details h2 {
  font-size: 1.25rem;
  margin-bottom: 28px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-detail h3 {
  color: var(--green-deep);
  font-size:1rem;
  margin-bottom: 4px;
}

.contact-detail p {
  color: #4a574b;
  font-size:1rem;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-socials a {
  background: var(--ink);
  color: #fff;
  border-radius: 5px;
  padding: 8px 12px;
  text-decoration: none;
  font-size:1rem;
  font-weight: 600;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(28, 42, 30, 0.08);
}

.contact-prompt {
  display: block;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 16px;
  text-align: center;
  font-size:1rem;
}

.contact-form.inbound-form {
  max-width: none;
  margin: 6px 0 0;
  padding: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

.contact-submit {
  width: 100%;
}

.impact .editorial-grid h2 {
  color: #fff;
}

.impact .editorial-grid p {
  color: #d9e2d2;
}

.photo-frame figcaption a {
  color: inherit;
}

.contact-icon-whatsapp {
  background: #25d366;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(28, 42, 30, 0.22);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #1ebe57;
}

.photo-crop-wide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 55%;
}

@media (max-width: 820px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .editorial-grid-reverse > :first-child,
  .editorial-grid-reverse > :last-child {
    order: initial;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 20px;
  }

  .trust-proof {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
    flex-basis: 100%;
  }

  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-split-media {
    order: -1;
  }

  .contact-strip-inner {
    grid-template-columns: 1fr;
  }

  .div-grid,
  .products-scale {
    grid-template-columns: 1fr;
  }
}

/* HERO WITH PHOTO */
.hero-split {
  background: linear-gradient(180deg, var(--field) 0%, var(--paper) 100%);
  padding: 56px 0 48px;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-split h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: var(--green-deep);
  max-width: 16ch;
}

.hero-split .lede {
  font-size: 1.12rem;
  max-width: 48ch;
  margin: 18px 0 8px;
  color: #3a4a3c;
}

.hero-split-media {
  margin: 0;
}

.hero-split-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* PRODUCT LISTS & CATALOGUES */
.product-list {
  list-style: none;
  margin: 0;
}

.product-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size:1rem;
  color: #3a4a3c;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size:1rem;
  color: #4a574b;
}

.products-scale {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.products-scale-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
}

.products-scale-item .num {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.products-scale-item .lbl {
  font-size:1rem;
  color: #3a4a3c;
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-size:1rem;
  margin: 20px 0 8px;
}

.catalog-table th,
.catalog-table td {
  border: 1px solid var(--line);
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
}

.catalog-table th {
  background: var(--field);
  color: var(--green-deep);
  font-weight: 600;
}

.catalog-table tbody tr:nth-child(even) {
  background: #fafbf7;
}

.catalog-note {
  font-size:1rem;
  color: #4a574b;
  margin-top: 10px;
}

/* CONTACT STRIP */
.contact-strip {
  background: var(--green-deep);
  color: #d9e2d2;
  padding: 22px 0;
  font-size:1rem;
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 28px;
}

.contact-strip strong {
  display: block;
  color: var(--gold);
  font-size:1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-strip a {
  color: #fff;
}

.home-whatsapp {
  background: var(--field);
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.home-whatsapp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.home-whatsapp h2 {
  margin-bottom: 8px;
}

.btn-whatsapp {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 1rem;
  background: #25d366;
  color: #fff;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

@media (max-width: 640px) {
  .home-whatsapp-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CIRCULAR FLOW DIAGRAM */
.circular-showcase {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--field) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.circular-showcase h2 {
  max-width: none;
}

.circular-diagram-frame {
  margin: 8px auto 36px;
  max-width: 960px;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(28, 42, 30, 0.06);
  overflow: visible;
}

.circular-diagram-frame img,
.circular-diagram-frame svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.circular-diagram-caption {
  margin: 18px 0 0;
  text-align: center;
  font-size:1rem;
  color: #5a675c;
  letter-spacing: 0.02em;
}

.circular-callouts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.circular-callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 18px;
}

.circular-callout h3 {
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.circular-callout p {
  font-size:1rem;
  color: #3a4a3c;
}

.circular-callout-featured {
  grid-column: span 2;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.circular-callout-featured h3 {
  color: #fff;
}

.circular-callout-featured p {
  color: #d9e2d2;
}

@media (max-width: 900px) {
  .circular-callouts {
    grid-template-columns: 1fr 1fr;
  }

  .circular-callout-featured {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .circular-callouts {
    grid-template-columns: 1fr;
  }

  .circular-callout-featured {
    grid-column: span 1;
  }
}

/* EVIDENCE PANEL */
.evidence-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 24px;
}

.evidence-panel h3 {
  color: var(--green-deep);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.evidence-panel dl {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 8px 16px;
  font-size:1rem;
}

.evidence-panel dt {
  color: #5a675c;
  font-weight: 600;
}

.evidence-panel dd {
  color: #3a4a3c;
  margin: 0;
}

@media (max-width: 640px) {
  .evidence-panel dl {
    grid-template-columns: 1fr;
  }
}

/* TEAM & TIMELINE */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.team-card h3 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.team-card p {
  font-size:1rem;
  color: #3a4a3c;
}

.timeline {
  list-style: none;
  margin-top: 24px;
  border-left: 2px solid var(--line);
  padding-left: 24px;
}

.timeline li {
  position: relative;
  padding: 0 0 22px 0;
  font-size:1rem;
  color: #3a4a3c;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline li strong {
  display: block;
  color: var(--green-deep);
}

.intake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 24px 0;
}

.intake-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
}

.intake-card h3 {
  color: var(--green);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.intake-card ul {
  margin: 0;
  padding-left: 18px;
  font-size:1rem;
  color: #3a4a3c;
}

.intake-card li {
  margin-bottom: 6px;
}

.process-steps {
  list-style: none;
  margin: 24px 0 0;
  counter-reset: step;
}

.process-steps li {
  counter-increment: step;
  padding: 0 0 18px 42px;
  position: relative;
  font-size:1rem;
  color: #3a4a3c;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size:1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-steps li strong {
  display: block;
  color: var(--green-deep);
}

.leader-profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin-top: 28px;
}

.leader-profile img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.leader-profile h3 {
  color: var(--green-deep);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.leader-title {
  color: var(--green);
  font-weight: 600;
  font-size:1rem;
  margin-bottom: 12px;
}

.leader-profile p {
  font-size:1rem;
  color: #3a4a3c;
}

@media (max-width: 640px) {
  .leader-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-profile img {
    margin: 0 auto;
  }
}
