:root {
  --forest: #173c2c;
  --forest-2: #24533b;
  --leaf: #5c7f3a;
  --sage: #dce4cf;
  --cream: #f5f1e8;
  --sand: #e8ddc9;
  --clay: #a9653f;
  --ink: #1c241f;
  --muted: #687067;
  --white: #fffdf8;
  --line: rgba(23, 60, 44, 0.14);
  --shadow: 0 18px 50px rgba(24, 39, 30, 0.10);
  --radius: 22px;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(23, 60, 44, 0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  background: none;
  padding: 0;
  color: #fff;
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -.05em;
}
.brand img {
  height: 64px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  display: block;
  flex-shrink: 0;
}

.nav .brand .brand-copy { display: none !important; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 700; }
.brand-copy small { font-size: 10px; opacity: .72; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.86); font-size: 14px; }
.nav-links a { transition: opacity .25s ease, transform .25s ease; }
.nav-links a:hover { opacity: .65; transform: translateY(-1px); }
.nav-cta { border: 1px solid rgba(255,255,255,.35); padding: 9px 15px; border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; padding: 8px; }
.menu-toggle span { display: block; width: 23px; height: 2px; background: currentColor; margin: 5px 0; }

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: none;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/turmeric crop.png") center/cover no-repeat;
  filter: blur(4px) saturate(.95);
  transform: scale(1.03);
  z-index: 0;
  will-change: filter, transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,34,24,.78) 0%, rgba(10,34,24,.43) 48%, rgba(10,34,24,.15) 100%), linear-gradient(180deg, rgba(8,22,15,.08), transparent 40%, rgba(8,22,15,.08));
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; }
.hero-copy { max-width: 680px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--leaf);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #dbe7cc; }
.hero h1 {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(50px, 7vw, 86px);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 700;
}
.hero h1 em { color: #dce9b7; font-style: italic; }
.hero-heading-row { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 36px; align-items: end; }
.hero-stats { display: grid; gap: 22px; }
.hero-stat { min-width: 145px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.38); }
.hero-stat strong, .hero-stat > span { color: #fff; font-family: 'Open Sans', sans-serif; font-size: clamp(28px, 1.1vw, 48px); line-height: 1; font-weight: 700; }
.hero-stat > span { margin-left: 2px; color: #dce9b7; }
.hero-stat small { display: block; margin-top: 8px; color: rgba(255,255,255,.76); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-text { max-width: 590px; margin: 30px 0 0; font-size: 18px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 750;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.button-light { background: #fffdf8; color: var(--forest); }
.button-dark { background: var(--forest); color: #fff; }
.text-link { font-size: 13px; font-weight: 750; }
.light-link { color: #fff; }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: rgba(255,255,255,.76);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: #d8e7b4; box-shadow: 0 0 0 6px rgba(216,231,180,.14); }
.hero-scroll {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .16em;
  opacity: .7; z-index: 2;
}
.scroll-line { width: 50px; height: 1px; background: rgba(255,255,255,.65); }

.section { padding: 110px 0; }
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 120px 1fr 390px;
  gap: 60px;
  align-items: start;
}
.section-label {
  display: flex; flex-direction: column; gap: 9px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted);
}
.section-label span:first-child { font-size: 20px; font-weight: 800; color: var(--leaf);  }
.intro-content h2,
.section-heading h2,
.knowledge-copy h2,
.credibility h2,
.contact-copy h2 {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 700;
}
.intro-content h2 { max-width: 650px; }
.intro-content .lead { margin-top: 28px; font-size: 19px; color: #3d473f; }
.intro-content p:not(.lead) { color: var(--muted); max-width: 650px; }
.intro-image { position: relative; margin-top: 10px; }
.intro-image img { height: 440px; object-fit: cover; border-radius: 24px; }
.image-caption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,253,248,.88); padding: 7px 10px; border-radius: 999px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .12em;
}

.journey-section { background: var(--cream); }
.section-heading {
  display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 48px;
}
.section-heading > p { max-width: 410px; color: var(--muted); margin: 0; }
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.journey-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, transform .3s ease;
}
.journey-card:hover { background: #fffdf8; transform: translateY(-4px); }
.step { color: var(--clay); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.icon { display: block; margin-top: 28px; font-size: 30px; filter: saturate(.8); }
.journey-card h3 { margin: 16px 0 8px; font-family: 'Open Sans', sans-serif; font-size: 24px; font-weight: 700; }
.journey-card p { color: var(--muted); font-size: 14px; margin: 0; max-width: 300px; }

.retail-products-section { background: var(--cream); }
.retail-products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.retail-product-card {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) 1.1fr;
  align-items: center;
  overflow: hidden;
  min-height: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.retail-product-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.retail-product-content { padding: 30px; }
.retail-product-content h3 {
  margin: 0 0 26px;
  color: var(--forest);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  font-weight: 700;
}
.retail-product-content .button { width: fit-content; }

.field-story {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 600px;
  background: var(--forest);
  color: #fff;
}
.field-image { overflow: hidden; }
.field-image img { height: 100%; min-height: 600px; object-fit: cover; filter: saturate(.82); }
.field-content { padding: 90px clamp(35px, 6vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.field-content h2 { margin: 0; font-family: 'Open Sans', sans-serif; font-size: clamp(38px, 5vw, 65px); line-height: 1; letter-spacing: -.045em; font-weight: 700; }
.field-content > p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 520px; margin: 28px 0; }
.mini-points { display: grid; gap: 12px; margin-top: 15px; }
.mini-points span { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); color: #dce9d0; font-size: 13px; }

.products-section { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.9) brightness(.88);
  transition: transform .7s cubic-bezier(.2,.65,.2,1);
}

.product-card:hover img { transform: scale(1.03); }
.product-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(11,18,14,0.18) 52%, rgba(11,18,14,0.82) 100%);
  box-shadow: inset 0 -80px 120px rgba(0,0,0,.42);
}
.product-info {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 25px;
  z-index: 1;
}
.product-info > span { font-size: 10px; letter-spacing: .16em; opacity: .7; }
.product-info h3 {
  margin: 8px 0 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,.62);
  line-height: .9;
}
.product-info p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  text-shadow: 0 3px 12px rgba(0,0,0,.55);
}
.product-note {
  margin-top: 20px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px;
  display: grid; grid-template-columns: 46px 1fr auto; gap: 16px; align-items: center;
}
.note-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); font-family: 'Open Sans', sans-serif; font-weight: 700; }
.product-note strong { font-family: 'Open Sans', sans-serif; font-size: 20px; font-weight: 700; }
.product-note p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.buyers-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--sand); }
.buyers-image { min-height: 650px; overflow: hidden; }
.buyers-image img { width: 100%; height: 100%; object-fit: cover; }
.buyers-content { padding: 85px clamp(35px, 7vw, 105px); display: flex; flex-direction: column; justify-content: center; }
.buyers-content h2 { margin: 0; font-family: 'Open Sans', sans-serif; font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -.045em; font-weight: 700; }
.large-copy { max-width: 530px; font-size: 18px; color: #4f574e; margin: 28px 0; }
.buyer-list { border-top: 1px solid rgba(23,60,44,.16); margin: 18px 0 30px; }
.buyer-list div { display: flex; align-items: center; gap: 18px; padding: 13px 0; border-bottom: 1px solid rgba(23,60,44,.16); }
.buyer-list span { font-size: 10px; color: var(--clay); }
.buyer-list strong { font-family: 'Open Sans', sans-serif; font-weight: 700; }

.knowledge-section { background: var(--cream); }
.knowledge-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.knowledge-copy p:not(.eyebrow) { color: var(--muted); max-width: 520px; margin: 25px 0; }
.knowledge-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

.credibility { background: var(--forest-2); color: #fff; padding: 85px 0; }
.credibility-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.credibility h2 { color: #fff; }
.credibility-copy p { color: rgba(255,255,255,.72); max-width: 520px; }
.source-links { display: flex; gap: 22px; margin-top: 25px; flex-wrap: wrap; }
.source-links a { color: #dce9d0; font-size: 13px; font-weight: 750; border-bottom: 1px solid rgba(220,233,208,.4); padding-bottom: 3px; }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 120px; }
.contact-copy p:not(.eyebrow) { max-width: 520px; color: var(--muted); margin-top: 28px; font-size: 17px; }
.contact-details { border-top: 1px solid var(--line); }
.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.contact-item strong, .contact-item a { font-family: 'Open Sans', sans-serif; font-size: 19px; font-weight: 700; }
.contact-actions { display: flex; align-items: center; gap: 22px; margin-top: 26px; }

.footer { background: #102b20; color: rgba(255,255,255,.65); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 12px; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { font-family: 'Open Sans', sans-serif; font-weight: 700; }
.footer-brand small { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.footer p, .back-top { margin: 0; font-size: 11px; }
.back-top { color: #dce9d0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 80px 1fr; }
  .intro-image { grid-column: 2; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .retail-products-grid { grid-template-columns: 1fr; }
  .product-card { height: 420px; }
  .field-story, .buyers-section { grid-template-columns: 1fr; }
  .field-image, .buyers-image { min-height: 420px; }
  .field-image img { min-height: 420px; }
  .field-content { min-height: 520px; }
  .knowledge-grid { grid-template-columns: 1fr; gap: 40px; }
  .knowledge-image img { max-width: 100%; height: auto; }
  .credibility-inner, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { height: 68px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 14px; right: 14px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(16,43,32,.98); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { text-align: center; margin: 6px; }
  .hero { min-height: 86vh; }
  .hero h1 { font-size: clamp(48px, 15vw, 76px); }
  .hero-text { font-size: 16px; }
  .hero-heading-row { display: block; }
  .hero-stats { display: flex; gap: 20px; margin-top: 32px; }
  .hero-stat { min-width: 125px; padding-left: 12px; }
  .hero-stat small { font-size: 10px; }
  .hero-note { position: static; margin-top: 70px; }
  .hero-scroll { display: none; }
  .section { padding: 78px 0; }
  .intro-grid { display: block; }
  .section-label { margin-bottom: 32px; }
  .intro-image { margin-top: 35px; }
  .intro-image img { height: 330px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { margin-top: 20px; }
  .journey { grid-template-columns: 1fr; }
  .journey-card { min-height: 210px; }
  .field-content { padding: 70px 22px; }
  .buyers-content { padding: 70px 22px; }
  .buyers-image { min-height: 360px; }
  .product-note { grid-template-columns: 42px 1fr; }
  .product-note .text-link { grid-column: 2; }
  .retail-product-card { grid-template-columns: 1fr; }
  .retail-product-card img { height: 280px; min-height: 0; }
  .retail-product-content { padding: 25px; }
  .credibility { padding: 70px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* ============================================================
   EVIDENCE / RESEARCH / PARTNERSHIPS
   ============================================================ */
.proof-section {
  background: #eef0e7;
}

.proof-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.proof-card {
  flex: 0 0 min(420px, 82vw);
  background: var(--white);
  padding: 34px;
  min-height: 350px;
  position: relative;
  transition: transform .3s ease, background .3s ease;
  scroll-snap-align: start;
  border: 1px solid var(--line);
}

.proof-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 20px;
  background: #e9efe5;
}

.proof-card:hover {
  transform: translateY(-4px);
  background: #fffdf8;
}

.proof-number {
  color: var(--clay);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  margin-bottom: 45px;
}

.proof-card h3 {
  margin: 0 0 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 700;
  max-width: 470px;
}

.proof-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  max-width: 500px;
}

.proof-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid rgba(23,60,44,.35);
  padding-bottom: 3px;
}

.proof-market {
  background: var(--forest);
  color: #fff;
}

.proof-market .eyebrow {
  color: #dce9b7;
}

.proof-market p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.proof-market .proof-link {
  color: #dce9b7;
  border-color: rgba(220,233,183,.45);
}

.proof-bottom {
  margin-top: 20px;
  padding: 25px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255,253,248,.55);
}

.proof-bottom-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.proof-bottom strong {
  font-family: 'Open Sans', sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.proof-bottom p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .proof-grid {
    display: flex;
    gap: 12px;
  }

  .proof-card {
    flex-basis: min(82vw, 360px);
    min-height: auto;
    padding: 24px;
  }

  .proof-card img {
    height: 180px;
  }

  .proof-number {
    margin-bottom: 30px;
  }
}
