/* ==========================================================================
   ROOTED FIELD CO. — A House for Indonesia's Roots
   Design language: earth tone / sage + deep forest / editorial agrarian
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ground — sage cream family */
  --ground:      #F2F0E6;
  --ground-alt:  #E8E6D8;
  --bone:        #FAF8F1;

  /* Ink — deep forest family */
  --ink:         #24382E;
  --forest:      #2E4A3C;
  --forest-deep: #1B2C23;

  /* Accent — terracotta from the field illustrations */
  --terracotta:      #B4562F;
  --terracotta-deep: #8F4324;

  /* Supporting earth */
  --soil:     #6B5843;
  --sage:     #C7CDB7;
  --sage-lt:  #DDE2D2;

  /* Text roles */
  --text:        var(--ink);
  --text-muted:  #5C6B5F;
  --text-onDark: #E9EDE2;
  --text-onDarkMuted: rgba(233, 237, 226, .66);

  /* Lines */
  --hairline:      rgba(36, 56, 46, .16);
  --hairline-soft: rgba(36, 56, 46, .09);
  --hairline-dark: rgba(233, 237, 226, .18);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --fs-display-xxl: clamp(2.75rem, 1.35rem + 5.6vw, 5.75rem);
  --fs-display-xl:  clamp(2.25rem, 1.45rem + 3.2vw, 4rem);
  --fs-display-lg:  clamp(1.875rem, 1.4rem + 1.9vw, 2.875rem);
  --fs-display-md:  clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --fs-h3:          clamp(1.1875rem, 1.1rem + .4vw, 1.5rem);
  --fs-lead:        clamp(1.0625rem, 1rem + .35vw, 1.3125rem);
  --fs-body:        1.0625rem;
  --fs-sm:          .9375rem;
  --fs-xs:          .8125rem;
  --fs-kicker:      .75rem;

  /* Space */
  --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; --s-10: 128px;
  --band: clamp(64px, 9vw, 128px);

  /* Geometry — squared, deliberately not pill-shaped */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 6px;
  --arch: 50% 50% 3px 3px / 30% 30% 3px 3px;

  /* Shadow — barely there, earth has no gloss */
  --sh-1: 0 1px 2px rgba(27, 44, 35, .06);
  --sh-2: 0 10px 30px -18px rgba(27, 44, 35, .45);
  --sh-3: 0 28px 60px -32px rgba(27, 44, 35, .5);

  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .6, .25, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain — the ground should feel like pressed board, not screen white */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='.22'/></svg>");
}
body > * { position: relative; z-index: 1; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 28, "WONK" 1;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

::selection { background: var(--sage); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--text-onDark);
  padding: 12px 20px;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}
.skip-link:focus { left: 8px; top: 8px; }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 860px; }

.band { padding-block: var(--band); }
.band--tight { padding-block: clamp(48px, 6vw, 80px); }
.band--alt { background: var(--ground-alt); }
.band--dark {
  background: var(--forest-deep);
  color: var(--text-onDark);
}
.band--dark h1, .band--dark h2, .band--dark h3 { color: var(--bone); }

.rule {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */
.kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s-5);
}
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
  max-width: 88px;
}
.kicker--plain::after { display: none; }
.band--dark .kicker { color: #D9A084; }
.band--dark .kicker::after { background: var(--hairline-dark); }

.display-xxl { font-size: var(--fs-display-xxl); }
.display-xl  { font-size: var(--fs-display-xl); }
.display-lg  { font-size: var(--fs-display-lg); }
.display-md  { font-size: var(--fs-display-md); line-height: 1.15; }
.h3          { font-size: var(--fs-h3); line-height: 1.25; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}
.band--dark .lead { color: var(--text-onDarkMuted); }

.muted { color: var(--text-muted); }
.band--dark .muted { color: var(--text-onDarkMuted); }

/* The one italic flourish the system allows — a single word, never a phrase */
.wonk {
  font-style: italic;
  font-variation-settings: "SOFT" 28, "WONK" 1;
  color: var(--terracotta);
}
.band--dark .wonk { color: #E0A183; }

.measure { max-width: 62ch; }
.measure--sm { max-width: 48ch; }

/* --------------------------------------------------------------------------
   5. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  min-height: 48px;
}
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary {
  background: var(--forest);
  color: var(--bone);
  box-shadow: var(--sh-1);
}
.btn--primary:hover { background: var(--terracotta); }

.btn--ghost {
  border-color: var(--hairline);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { background: var(--sage-lt); border-color: var(--ink); }

.btn--onDark {
  border-color: var(--hairline-dark);
  color: var(--bone);
  background: transparent;
}
.btn--onDark:hover { background: rgba(233,237,226,.1); border-color: var(--bone); }

.btn--light {
  background: var(--bone);
  color: var(--forest-deep);
}
.btn--light:hover { background: var(--terracotta); color: var(--bone); }

/* Text link with a root that grows on hover */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  padding-block: 6px;
  position: relative;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.band--dark .tlink { color: #E0A183; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 240, 230, .88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header.is-stuck {
  border-bottom-color: var(--hairline);
  background: rgba(242, 240, 230, .95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { flex: none; color: var(--forest); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 28, "WONK" 1;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-right: -12px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: background-color .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__toggle { display: none; }
}
@media (max-width: 899px) {
  .nav__links { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--forest-deep);
  color: var(--text-onDark);
  display: flex;
  flex-direction: column;
  padding: calc(env(safe-area-inset-top, 0px) + 24px) var(--gutter)
           calc(env(safe-area-inset-bottom, 0px) + 32px);
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer.is-open { transform: translateY(0); }
.drawer__head { display: flex; justify-content: flex-end; }
.drawer__close {
  width: 48px; height: 48px;
  background: none; border: 0; cursor: pointer;
  color: var(--bone);
  font-size: 26px; line-height: 1;
}
.drawer__list {
  list-style: none;
  margin: auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.drawer__list a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 11vw, 3rem);
  line-height: 1.2;
  color: var(--bone);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline-dark);
}
.drawer__list a:hover { color: #E0A183; }
.drawer__foot { margin-top: var(--s-7); }
body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero — full-bleed video
   -------------------------------------------------------------------------- */
.vhero {
  position: relative;
  min-height: 640px;
  height: 92svh;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
  isolation: isolate;
}
@media (max-width: 899px) {
  .vhero { height: auto; min-height: 0; padding-top: 108px; }
}

.vhero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.vhero__bg video,
.vhero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
/* Poster sits under the video so there is never a black flash */
.vhero__bg img {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.vhero__bg video { position: relative; z-index: 0; }

/* Two-stop scrim: readable type at the bottom, brand colour throughout */
.vhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top,
      rgba(20, 33, 26, .92) 0%,
      rgba(20, 33, 26, .70) 32%,
      rgba(20, 33, 26, .34) 62%,
      rgba(20, 33, 26, .30) 100%),
    linear-gradient(to right,
      rgba(20, 33, 26, .55) 0%,
      rgba(20, 33, 26, .12) 55%,
      rgba(20, 33, 26, 0) 100%);
}

/* A whisper of grain over the footage so it sits on the same paper as the page */
.vhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

.vhero__inner {
  width: 100%;
  padding-block: clamp(48px, 7vw, 96px);
}
.vhero__copy { max-width: 22ch; }

.vhero .kicker { color: #E3B39A; }
.vhero .kicker::after { background: rgba(233, 237, 226, .32); }

.vhero__title {
  font-size: var(--fs-display-xxl);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--bone);
  margin-bottom: var(--s-5);
  text-shadow: 0 2px 30px rgba(11, 20, 15, .45);
}
.vhero__title .wonk { color: #E9A98A; }

.vhero__lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: rgba(233, 237, 226, .86);
  max-width: 46ch;
  text-shadow: 0 1px 16px rgba(11, 20, 15, .5);
}

.vhero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4) var(--s-5);
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(233, 237, 226, .2);
}
.vhero__caption {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233, 237, 226, .62);
  max-width: 34ch;
  line-height: 1.6;
  margin: 0;
}
.vhero .btn-row { margin-top: 0; }

/* Pause control — motion the visitor can switch off */
.vhero__pause {
  position: absolute;
  right: var(--gutter);
  top: calc(env(safe-area-inset-top, 0px) + 96px);
  z-index: 3;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 237, 226, .32);
  border-radius: var(--r-xs);
  background: rgba(20, 33, 26, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--bone);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.vhero__pause:hover {
  background: rgba(20, 33, 26, .6);
  border-color: rgba(233, 237, 226, .6);
}
@media (max-width: 899px) { .vhero__pause { display: none; } }

/* Header sits over the footage until the page scrolls.
   Sticky is not enough here: a transparent sticky header just reveals the
   cream page behind it, so on this page it comes out of flow entirely and
   the video starts at y=0 underneath it. */
body.hero-dark .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
body.hero-dark .site-header:not(.is-stuck) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.hero-dark .site-header:not(.is-stuck) .brand__name,
body.hero-dark .site-header:not(.is-stuck) .nav__link[aria-current="page"],
body.hero-dark .site-header:not(.is-stuck) .nav__toggle { color: var(--bone); }
body.hero-dark .site-header:not(.is-stuck) .brand__mark { color: var(--bone); }
body.hero-dark .site-header:not(.is-stuck) .brand__tag,
body.hero-dark .site-header:not(.is-stuck) .nav__link { color: rgba(233, 237, 226, .76); }
body.hero-dark .site-header:not(.is-stuck) .nav__link:hover { color: var(--bone); }
body.hero-dark .site-header:not(.is-stuck) .btn--primary {
  background: rgba(250, 248, 241, .1);
  border-color: rgba(233, 237, 226, .38);
  color: var(--bone);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
body.hero-dark .site-header:not(.is-stuck) .btn--primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* Page hero (interior pages) */
.phero {
  padding-block: clamp(56px, 8vw, 112px) clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--hairline);
}
.phero__grid {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
@media (min-width: 900px) {
  .phero__grid { grid-template-columns: 1.15fr .85fr; }
}
.phero__title { font-size: var(--fs-display-xl); letter-spacing: -.025em; }

/* --------------------------------------------------------------------------
   8. Pillars (Roots / People / Global)
   -------------------------------------------------------------------------- */
.pillars {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  padding: clamp(32px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: background-color .3s var(--ease);
}
@media (min-width: 760px) {
  .pillar {
    border-bottom: 0;
    padding: clamp(36px, 4vw, 60px) clamp(20px, 2.5vw, 40px);
    border-right: 1px solid var(--hairline);
  }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-right: 0; padding-right: 0; }
}
.pillar:hover { background: rgba(199, 205, 183, .22); }
.pillar__num {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .16em;
  color: var(--terracotta-deep);
}
.pillar__title { font-size: var(--fs-display-md); line-height: 1.12; }
.pillar__body { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }
.pillar .tlink { margin-top: auto; padding-top: var(--s-4); }

/* --------------------------------------------------------------------------
   9. Split / editorial sections
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left  { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split--flip .split__media { order: -1; }
}
.split__media {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--sage);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--arch { border-radius: var(--arch); }
.split__media--tall { aspect-ratio: 4 / 5; }
.split__media--wide { aspect-ratio: 5 / 4; }

.media-note {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--s-3);
}

/* --------------------------------------------------------------------------
   10. Crop cards (arched — the signature form)
   -------------------------------------------------------------------------- */
.crops {
  display: grid;
  gap: clamp(24px, 3vw, 44px) clamp(16px, 1.8vw, 24px);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 560px) { .crops { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1140px) { .crops { grid-template-columns: repeat(5, 1fr); } }
.crop {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 110px;
}
.crop__media {
  aspect-ratio: 3 / 4;
  border-radius: var(--arch);
  overflow: hidden;
  background: var(--sage);
  margin-bottom: var(--s-4);
}
.crop__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.crop:hover .crop__media img { transform: scale(1.045); }
.crop__name {
  font-size: clamp(1.0625rem, .95rem + .4vw, 1.375rem);
  line-height: 1.2;
  margin-bottom: var(--s-2);
  text-wrap: balance;
}
.crop__latin {
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-bottom: var(--s-3);
  min-height: 1.5em;
}
.crop__forms {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.crop__forms li {
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xs);
  padding: 4px 9px;
  background: rgba(250, 248, 241, .6);
}

/* --------------------------------------------------------------------------
   11. Form / stage cards
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--bone);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-sm);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
}
.card:hover {
  border-color: var(--hairline);
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .16em;
  color: var(--terracotta-deep);
}
.card__title { font-size: var(--fs-h3); line-height: 1.2; }
.card__body { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.card--dark {
  background: var(--forest);
  border-color: transparent;
  color: var(--text-onDark);
}
.card--dark .card__title { color: var(--bone); }
.card--dark .card__body { color: var(--text-onDarkMuted); }
.card--dark .card__num { color: #D9A084; }

/* --------------------------------------------------------------------------
   12. Process chain (Source → Develop → Prepare → Connect)
   -------------------------------------------------------------------------- */
.chain {
  display: grid;
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 760px) {
  .chain { grid-template-columns: repeat(4, 1fr); }
}
.chain__step {
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
@media (min-width: 760px) {
  .chain__step {
    border-bottom: 0;
    border-right: 1px solid var(--hairline);
    padding: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 32px);
  }
  .chain__step:first-child { padding-left: 0; }
  .chain__step:last-child { border-right: 0; padding-right: 0; }
}
.chain__num {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .16em;
  color: var(--terracotta-deep);
  display: block;
  margin-bottom: var(--s-3);
}
.chain__title {
  font-size: var(--fs-display-md);
  margin-bottom: var(--s-2);
}
.chain__body { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.band--dark .chain { border-top-color: var(--hairline-dark); }
.band--dark .chain__step { border-color: var(--hairline-dark); }

/* --------------------------------------------------------------------------
   13. Definition table (product categories)
   -------------------------------------------------------------------------- */
.deftable { display: grid; border-top: 1px solid var(--hairline); }
.deftable__row {
  display: grid;
  gap: var(--s-2) clamp(24px, 4vw, 56px);
  padding-block: clamp(20px, 2.4vw, 30px);
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  transition: background-color .3s var(--ease);
}
@media (min-width: 760px) {
  .deftable__row { grid-template-columns: minmax(180px, 250px) 1fr; }
}
.deftable__row:hover { background: rgba(199, 205, 183, .2); }
.deftable__term {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-variation-settings: "SOFT" 28, "WONK" 1;
  line-height: 1.25;
}
.deftable__desc { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }
.deftable__tags {
  list-style: none;
  margin: var(--s-2) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.deftable__tags li {
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .05em;
  color: var(--forest);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xs);
  padding: 3px 8px;
}

/* --------------------------------------------------------------------------
   14. Pull quote
   -------------------------------------------------------------------------- */
.pullquote {
  border-left: 2px solid var(--terracotta);
  padding-left: clamp(20px, 3vw, 40px);
  max-width: 24ch;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-display-lg);
  line-height: 1.18;
  font-variation-settings: "SOFT" 28, "WONK" 1;
  letter-spacing: -.015em;
}
.pullquote figcaption {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--s-5);
}
.band--dark .pullquote figcaption { color: var(--text-onDarkMuted); }

/* --------------------------------------------------------------------------
   15. Markets
   -------------------------------------------------------------------------- */
.markets {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
}
.markets li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--hairline-dark);
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  line-height: 1.2;
  color: var(--bone);
}
.markets li span {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-onDarkMuted);
  flex: none;
}

/* --------------------------------------------------------------------------
   16. Stats / facts strip
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.fact__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.25rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: var(--s-3);
  display: block;
}
.fact__label {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}
.band--dark .fact__label { color: var(--text-onDarkMuted); }

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta {
  background: var(--forest);
  color: var(--text-onDark);
  border-radius: var(--r-md);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
  display: grid;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 860px) {
  .cta { grid-template-columns: 1.2fr auto; }
}
.cta::before {
  /* faint root-dot field, echoing soil */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233,237,226,.16) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  pointer-events: none;
}
.cta > * { position: relative; }
.cta__title { font-size: var(--fs-display-lg); color: var(--bone); }
.cta__body { color: var(--text-onDarkMuted); margin-top: var(--s-4); }

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--s-5); }
.form__grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xs);
  padding: 14px 16px;
  width: 100%;
  min-height: 52px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(92, 107, 95, .6); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(46, 74, 60, .12);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%232E4A3C' stroke-width='1.5'><path d='M1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form__note {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-5); }
.contact-list dt, .contact-item__label {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-item__value { font-size: var(--fs-lead); line-height: 1.4; }
.contact-item__value a { border-bottom: 1px solid var(--hairline); }
.contact-item__value a:hover { color: var(--terracotta-deep); border-color: currentColor; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--text-onDarkMuted);
  padding-block: clamp(56px, 7vw, 96px) 0;
}
.site-footer h2, .site-footer h3 { color: var(--bone); }
.footer__top {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
@media (min-width: 860px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand .brand__name { color: var(--bone); }
.footer__brand .brand__tag { color: var(--text-onDarkMuted); }
.footer__brand .brand__mark { color: var(--sage); }
.footer__blurb { margin-top: var(--s-5); font-size: var(--fs-sm); max-width: 38ch; }
.footer__heading {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 var(--s-4);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__list a {
  font-size: var(--fs-sm);
  color: var(--text-onDarkMuted);
  transition: color .25s var(--ease);
  display: inline-block;
  padding-block: 2px;
}
.footer__list a:hover { color: var(--bone); }
.footer__bottom {
  border-top: 1px solid var(--hairline-dark);
  padding-block: var(--s-5) calc(env(safe-area-inset-bottom, 0px) + 28px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(233, 237, 226, .5);
}

/* --------------------------------------------------------------------------
   20. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Misc
   -------------------------------------------------------------------------- */
.stack-sm > * + * { margin-top: var(--s-4); }
.stack-md > * + * { margin-top: var(--s-6); }
.stack-lg > * + * { margin-top: var(--s-7); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }

.root-divider {
  display: block;
  margin: 0 auto;
  color: var(--hairline);
}

.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-6);
}
.filterbar a {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xs);
  padding: 9px 16px;
  color: var(--forest);
  background: rgba(250, 248, 241, .5);
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}
.filterbar a:hover {
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}
