@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}


:root {
  --canvas: #f4f1eb;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #1f1d1a;
  --text: #3d3934;
  --muted: #77716a;
  --line: #d8d2c9;
  --line-soft: #e7e2da;
  --lavender: #777080;
  --lavender-soft: #e8e2ea;
  --sage: #5e675d;
  --dark: #211f1c;
  --success: #4e644e;
  --progress: #9a7b55;
  --container: 1200px;
  --ease: cubic-bezier(.32,.72,0,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
textarea { resize: vertical; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 24px;
  top: -80px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); text-wrap: balance; }
p { text-wrap: pretty; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}
h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 400;
}
h3 { margin-bottom: 9px; font-size: 20px; line-height: 1.3; font-weight: 500; }
em { font-style: italic; font-weight: 400; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.section-intro { max-width: 660px; color: #625c56; font-size: 17px; line-height: 1.65; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31,29,26,.09);
}
.site-nav {
  width: min(calc(100% - 64px), 1280px);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(170px,auto) 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; line-height: 1.15; }
.brand-logo { width: auto; height: 48px; flex: 0 0 auto; }
.brand-copy { display: grid; }
.brand-name { color: var(--ink); font-size: 15px; font-weight: 500; }
.brand-meta { margin-top: 4px; color: var(--muted); font-size: 11px; letter-spacing: .045em; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 26px; }
.desktop-nav a { position: relative; color: #57524c; font-size: 13px; line-height: 20px; font-weight: 400; }
.desktop-nav a:hover, .desktop-nav a[aria-current="true"] { color: var(--ink); }
.desktop-nav a[aria-current="true"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 450ms var(--ease), background 450ms var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); background: #000; }

.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: transparent; position: relative; cursor: pointer; }
.menu-button span { position: absolute; left: 12px; width: 20px; height: 1px; background: var(--ink); transition: transform 600ms var(--ease), top 600ms var(--ease); }
.menu-button span:first-child { top: 18px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(33,31,28,.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms var(--ease), visibility 450ms var(--ease);
}
.mobile-menu[aria-hidden="false"] { opacity: 1; visibility: visible; }
.mobile-menu-inner { width: min(calc(100% - 48px), 520px); display: grid; gap: 12px; }
.mobile-menu a, .mobile-data-cta { padding: 9px 0; color: var(--white); font-size: 25px; line-height: 1.2; font-weight: 400; text-align: left; }
.mobile-data-cta { margin-top: 18px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(255,255,255,.06); cursor: pointer; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 450ms var(--ease), background 450ms var(--ease), border-color 450ms var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #000; }
.button-secondary { border-color: #bdb6ad; background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); }

.hero { padding-top: 132px; padding-bottom: 64px; }
.hero-layout { display: grid; grid-template-columns: minmax(0,1.07fr) minmax(380px,.93fr); gap: 72px; align-items: center; }
.hero-copy { padding: 22px 0; }
.hero-subhead { max-width: 690px; margin-bottom: 30px; color: #57524c; font-size: 18px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-photo { position: relative; margin: 0; min-height: 590px; overflow: hidden; border-radius: 26px; background: #ece8e0; }
.hero-photo img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }

.hero-fact-rail { margin: 52px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-fact-rail li { min-height: 76px; display: flex; align-items: center; padding: 17px 22px 17px 0; color: var(--ink); font-size: 14px; line-height: 1.35; }
.hero-fact-rail li + li { padding-left: 22px; border-left: 1px solid var(--line); }

.product { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-layout { display: grid; grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr); gap: 80px; align-items: stretch; }
.product-copy { display: flex; flex-direction: column; justify-content: center; }
.spec-grid { margin: 34px 0 0; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.spec-grid > div { min-height: 84px; padding: 17px 18px 17px 0; border-bottom: 1px solid var(--line); }
.spec-grid > div:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
.spec-grid dt { margin-bottom: 7px; color: var(--muted); font-size: 11px; line-height: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.spec-grid dd { margin: 0; color: var(--ink); font-size: 16px; line-height: 1.4; }
.availability-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--success); }
.spec-current { background: rgba(94,103,93,.075); box-shadow: inset 3px 0 0 var(--sage); }
.spec-current dt { color: var(--sage); }
.availability-status { display: inline-flex; align-items: center; gap: 8px; padding: 5px 10px; border: 1px solid rgba(94,103,93,.24); border-radius: 999px; background: rgba(255,255,255,.68); color: #394239; font-size: 14px; line-height: 1.2; font-weight: 500; }
.quality-credential { margin-top: 28px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: #f7f4ee; }
.credential-kicker { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; line-height: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.quality-credential p { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.5; }
.product-botanical { margin: 0; min-height: 600px; overflow: hidden; border-radius: 24px; }
.product-botanical img { height: 100%; min-height: 600px; object-fit: cover; }

.buyer-supply { background: var(--canvas); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading > p:not(.eyebrow) { max-width: 680px; color: #625d57; font-size: 17px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.benefit-card { min-height: 245px; padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line); }
.benefit-card + .benefit-card { padding-left: 28px; border-left: 1px solid var(--line); }
.benefit-number { display: block; margin-bottom: 52px; color: var(--muted); font-size: 11px; }
.benefit-card h3 { font-size: 22px; font-weight: 400; }
.benefit-card p { margin: 18px 0 0; color: #655f59; line-height: 1.6; }
.wide-field-visual { position: relative; margin: 52px 0 0; height: 500px; overflow: hidden; border-radius: 24px; }
.wide-field-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }

.technical { background: var(--dark); color: rgba(255,255,255,.75); }
.technical h2, .technical h3 { color: var(--white); }
.technical .eyebrow { color: rgba(255,255,255,.5); }
.technical-layout { display: grid; grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); gap: 74px; align-items: start; }
.technical-copy { position: sticky; top: 112px; }
.technical-copy > p:not(.eyebrow) { max-width: 580px; margin-bottom: 26px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.65; }
.technical .button-primary { background: var(--white); color: var(--ink); }
.technical .button-primary:hover { background: #f1ede6; }
.technical-package { min-width: 0; }
.core-doc-title { margin: 0 0 16px; color: rgba(255,255,255,.52); font-size: 11px; line-height: 16px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.document-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.document-card { min-height: 174px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.035); }
.document-card h3 { margin-bottom: 13px; font-size: 17px; line-height: 1.35; font-weight: 500; }
.document-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.55; }
.supporting-documentation { margin-top: 22px; padding: 19px 0 0; border-top: 1px solid rgba(255,255,255,.17); }
.supporting-documentation > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.92); font-size: 13px; font-weight: 500; }
.supporting-documentation p { max-width: 850px; margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }
.supporting-doc-list { max-width: 900px; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 0; list-style: none; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }
.supporting-doc-list li { display: inline-flex; align-items: baseline; white-space: nowrap; }
.supporting-doc-list li:not(:last-child)::after { content: "·"; margin: 0 10px; color: rgba(255,255,255,.34); }

.qualification { background: var(--paper); border-bottom: 1px solid var(--line); }
.qualification-layout { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 82px; align-items: start; }
.qualification-copy > p:not(.eyebrow) { max-width: 610px; color: #625d57; font-size: 17px; line-height: 1.65; }
.pillar-list { border-top: 1px solid var(--line); }
.pillar-list article { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pillar-list article > span { color: var(--muted); font-size: 11px; padding-top: 4px; }
.pillar-list h3 { margin-bottom: 3px; font-size: 18px; font-weight: 500; }
.pillar-list p { margin: 0; color: #6a645e; }
.audit-credential { margin-top: 52px; padding: 28px 32px; display: grid; grid-template-columns: 64px 1fr; gap: 26px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: #f2eee8; }
.audit-mark { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; border: 1px solid #aaa399; color: var(--ink); font-size: 14px; font-weight: 500; letter-spacing: .08em; }
.audit-kicker { display: block; margin-bottom: 7px; color: var(--ink); font-size: 14px; font-weight: 500; }
.audit-credential p { max-width: 900px; margin: 0; color: #5f5953; font-size: 15px; line-height: 1.6; }

.profile { background: var(--canvas); }
.profile-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.88fr); gap: 82px; align-items: stretch; }
.profile-copy { display: flex; flex-direction: column; justify-content: center; }
.profile-copy > p:not(.eyebrow) { max-width: 620px; color: #625d57; font-size: 17px; line-height: 1.65; }
.process-list { margin: 30px 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--muted); font-size: 11px; padding-top: 4px; }
.process-list h3 { margin-bottom: 3px; font-size: 18px; }
.process-list p { margin: 0; color: #6a645e; }
.profile-copy .button { align-self: flex-start; }
.profile-photo { margin: 0; min-height: 620px; overflow: hidden; border-radius: 24px; }
.profile-photo img { height: 100%; min-height: 620px; object-fit: cover; }

.applications { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.buyer-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.buyer-card { min-height: 210px; padding: 27px 34px 24px 0; border-bottom: 1px solid var(--line); }
.buyer-card:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.buyer-card h3 { font-size: 23px; line-height: 1.25; font-weight: 400; }
.buyer-card p { max-width: 540px; margin: 18px 0 0; color: #69635d; line-height: 1.62; }

.traceability { background: var(--canvas); }
.traceability-layout { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: 78px; align-items: stretch; }
.traceability-copy { align-self: center; }
.trace-stages { margin-top: 36px; border-top: 1px solid var(--line); }
.trace-stages article { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.trace-stages article > span { color: var(--muted); font-size: 11px; padding-top: 4px; }
.trace-stages h3 { margin: 0; font-size: 18px; font-weight: 500; }
.traceability-statement { max-width: 620px; margin: 30px 0 0; color: var(--ink); font-size: 23px; line-height: 1.3; letter-spacing: -.015em; }
.traceability-photo { position: relative; margin: 0; min-height: 590px; overflow: hidden; border-radius: 24px; background: #ddd8cf; }
.traceability-photo img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: center top; }

.supply { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.supply-layout { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: 82px; align-items: start; }
.supply-list { border-top: 1px solid var(--line); }
.supply-list article { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.supply-list article > span { color: var(--muted); font-size: 11px; padding-top: 4px; }
.supply-list h3 { font-size: 20px; font-weight: 500; }
.supply-list p { margin: 0; color: #625d57; }

.assurance { background: var(--canvas); padding-top: 76px; padding-bottom: 76px; }
.assurance-card { padding: 48px 54px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; border-radius: 20px; background: var(--dark); color: var(--white); }
.assurance-card h2 { color: var(--white); margin-bottom: 0; font-size: clamp(34px,3.6vw,48px); }
.assurance-card .eyebrow { color: rgba(255,255,255,.5); }
.assurance-copy > p { margin-bottom: 25px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.6; }
.assurance-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.assurance-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.92); }

.commercial { background: var(--paper); border-top: 1px solid var(--line); }
.commercial-grid { display: grid; grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); gap: 80px; align-items: start; }
.commercial-copy { position: sticky; top: 112px; }
.commercial-copy > p:not(.eyebrow):not(.direct-email) { max-width: 560px; color: #625d57; font-size: 17px; line-height: 1.65; }
.direct-email { margin: 18px 0 0; color: var(--ink); font-size: 14px; line-height: 1.5; }
.direct-email a { text-decoration: underline; text-underline-offset: 4px; }
.text-action { margin-top: 18px; padding: 0; border: 0; background: transparent; color: var(--ink); font-size: 14px; font-weight: 500; cursor: pointer; text-align: left; }
.text-action:hover { text-decoration: underline; text-underline-offset: 4px; }
.lead-form { padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label > span, legend { display: block; margin-bottom: 7px; color: var(--ink); font-size: 13px; line-height: 18px; font-weight: 500; }
label > span small, legend small { color: var(--muted); font-weight: 400; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbc5bc;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
input:focus, select:focus, textarea:focus { border-color: #777069; box-shadow: 0 0 0 3px rgba(119,112,105,.11); }
textarea { min-height: 116px; }
input:user-invalid, select:user-invalid, textarea:user-invalid { border-color: #8a3b3b; }
fieldset { margin: 0; padding: 0; border: 0; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.checkbox-grid label { display: flex; gap: 9px; align-items: flex-start; padding: 10px 11px; border: 1px solid var(--line); border-radius: 8px; background: #fbfaf7; }
.checkbox-grid input { width: 16px; min-height: 16px; height: 16px; margin-top: 2px; }
.checkbox-grid span { margin: 0; font-weight: 400; }
.file-field small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 16px; }
.turnstile-slot { min-height: 0; }
.turnstile-slot:empty { display: none; }
.privacy-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.privacy-note a { text-decoration: underline; text-underline-offset: 3px; }
.form-submit { margin-top: 19px; width: 100%; }
.form-submit[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.form-submit[data-completed="true"] { background: #315934; opacity: 1; cursor: default; }
.form-status { min-height: 0; margin-top: 14px; scroll-margin: 24px; }
.form-status[hidden] { display: none; }
.form-status:not([hidden]) {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 8px 22px rgba(24,22,20,.08);
}
.form-status:focus { outline: 3px solid rgba(49,89,52,.22); outline-offset: 2px; }
.form-status-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.form-status-copy, .form-status-copy strong, .form-status-copy span { display: block; }
.form-status-copy strong { margin-bottom: 2px; font-size: 16px; line-height: 1.35; }
.form-status.success { border-color: #8eb998; background: #eaf5ec; color: #153e21; }
.form-status.success .form-status-icon { background: #315934; color: #fff; }
.form-status.error { border-color: #d9a29a; background: #fff3f1; color: #6f2525; }
.form-status.error .form-status-icon { background: #8a3b3b; color: #fff; }
.form-status.pending { border-color: #cbc5b9; background: #f7f4ed; color: var(--text); }
.form-status.pending .form-status-icon { background: #ded8cb; color: var(--text); }

.batch-modal {
  width: min(calc(100% - 32px), 690px);
  max-height: min(90vh, 850px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(24,22,20,.25);
  overflow: auto;
}
.batch-modal::backdrop { background: rgba(20,19,17,.52); backdrop-filter: blur(5px); }
.batch-modal h2 { font-size: clamp(34px,5vw,46px); margin-bottom: 14px; }
.modal-copy > p:not(.eyebrow) { max-width: 550px; color: #625d57; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); font-size: 24px; line-height: 1; cursor: pointer; }
.batch-form { margin-top: 26px; }
.modal-form-grid { gap: 14px; }
.compact-checkboxes { grid-template-columns: repeat(3,1fr); }

.site-footer { padding: 52px 0 34px; background: var(--dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 70px; align-items: start; }
.footer-brand { display: block; font-size: 16px; font-weight: 500; }
.footer-identity p { margin: 7px 0 0; color: rgba(255,255,255,.54); font-size: 14px; }
.footer-grid nav { display: grid; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: 13px; line-height: 20px; }
.footer-grid a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 720ms var(--ease), transform 720ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav, .nav-cta { display: none; }
  .site-nav { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero-layout, .product-layout, .technical-layout, .qualification-layout, .profile-layout, .traceability-layout, .supply-layout, .commercial-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 850px; }
  .hero-photo, .product-botanical, .profile-photo, .traceability-photo { min-height: 520px; }
  .hero-photo img, .product-botanical img, .profile-photo img, .traceability-photo img { min-height: 520px; }
  .technical-copy, .commercial-copy { position: static; }
}

@media (max-width: 760px) {
  .container, .site-nav { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .site-nav { min-height: 66px; }
  .brand-meta { display: none; }
  .brand-logo { height: 42px; }
  .hero { padding-top: 102px; padding-bottom: 42px; }
  h1 { font-size: clamp(45px,13vw,58px); line-height: 1; }
  h2 { font-size: 36px; line-height: 1.06; }
  .hero-subhead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-photo, .product-botanical, .profile-photo, .traceability-photo { min-height: 400px; border-radius: 18px; }
  .hero-photo img, .product-botanical img, .profile-photo img, .traceability-photo img { min-height: 400px; }
  .hero-fact-rail { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .hero-fact-rail li { min-height: 68px; padding: 13px 12px 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
  .hero-fact-rail li + li { padding-left: 12px; }
  .hero-fact-rail li:nth-child(3) { padding-left: 0; border-left: 0; }
  .spec-grid, .benefit-grid, .document-grid, .buyer-grid, .form-grid, .checkbox-grid, .compact-checkboxes, .assurance-card, .footer-grid { grid-template-columns: 1fr; }
  .spec-grid > div:nth-child(even), .benefit-card + .benefit-card, .buyer-card:nth-child(even) { padding-left: 0; border-left: 0; }
  .spec-grid > .spec-current { padding-left: 14px; }
  .benefit-card + .benefit-card, .buyer-card:nth-child(even) { border-top: 1px solid var(--line); }
  .benefit-card { min-height: auto; }
  .benefit-number { margin-bottom: 28px; }
  .wide-field-visual { height: 370px; border-radius: 18px; }
  .document-grid { gap: 8px; }
  .document-card { min-height: 132px; }
  .audit-credential { grid-template-columns: 1fr; gap: 16px; padding: 22px; }
  .profile-copy .button { align-self: stretch; }
  .buyer-card { min-height: auto; }
  .assurance-card { padding: 34px 24px; gap: 28px; border-radius: 16px; }
  .lead-form { padding: 20px; }
  .form-grid .full { grid-column: auto; }
  .batch-modal { padding: 28px 20px 22px; }
  .modal-close { top: 12px; right: 12px; }
  .footer-grid { gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.legal-page { min-height: 100vh; padding-top: 120px; background: var(--paper); }
.legal-copy { max-width: 900px; }
.legal-copy h1 { margin-bottom: 10px; font-size: clamp(44px,6vw,64px); color: var(--ink); }
.legal-copy h2 { margin: 46px 0 14px; font-size: 25px; line-height: 1.25; font-weight: 500; color: var(--ink); }
.legal-copy h3 { margin: 28px 0 10px; font-size: 18px; line-height: 1.35; font-weight: 500; color: var(--ink); }
.legal-copy p, .legal-copy li { color: #5c5751; font-size: 16px; line-height: 1.7; }
.legal-copy p { max-width: 820px; }
.legal-copy ul { max-width: 820px; margin: 12px 0 20px; padding-left: 22px; }
.legal-copy li + li { margin-top: 7px; }
.legal-copy a:not(.button) { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy > p:nth-of-type(1) { color: var(--muted); }
.legal-return { margin: 0 0 42px; }
