/* ==========================================================================
   Adiganga Industries — homepage styles
   Palette: farm green + cream + ghee gold
   ========================================================================== */

:root {
  --green-900: #08341f;
  --green-800: #0d452a;
  --green-700: #0f5132;
  --green-600: #17724a;
  --green-100: #e7f0e9;
  --green-050: #f2f7f3;

  --gold-600: #b5811a;
  --gold-700: #7f5310;
  --gold-500: #d99b25;
  --gold-400: #f5c45e;

  --cream: #fbf8f2;
  --ink: #16211c;
  --ink-soft: #4a5a51;
  --line: #e2e8e3;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(8, 52, 31, .06), 0 2px 8px rgba(8, 52, 31, .05);
  --shadow: 0 10px 30px rgba(8, 52, 31, .09);
  --shadow-lg: 0 24px 60px rgba(8, 52, 31, .14);

  --container: 1160px;
  --header-h: 74px;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI Semibold", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --num: "Inter Tight", "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.028em;
  margin: 0 0 .5em;
  color: var(--green-900);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.9vw, 3.25rem); letter-spacing: -.034em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.1rem; letter-spacing: -.018em; }
p { margin: 0 0 1rem; }

/* Emphasis in headings: colour, not italics — italics read decorative here. */
em { font-style: normal; color: var(--green-600); }

/* Figures line up in columns and do not jitter while counters animate. */
.stat strong, .hero-stat .num, .farmer-facts strong, .cert strong, .process-list .step {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 32px);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-700); color: #fff;
  padding: 12px 18px; z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 .85rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-800); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold-400); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-500); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-600); background: var(--green-050); }
.btn-sm { padding: .6rem 1.15rem; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--green-700); text-decoration: none !important; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.14rem; font-weight: 700; letter-spacing: -.022em; color: var(--green-900); }
.brand-text small { font-size: .655rem; font-weight: 500; letter-spacing: .105em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-size: .93rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; padding: .35rem 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold-500); transition: right .22s ease;
}
.nav a:hover { color: var(--green-800); }
.nav a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: .9rem; margin-left: auto; }
.nav + .header-cta { margin-left: 0; }
.phone { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 600; color: var(--green-800); text-decoration: none; }
.phone svg { width: 17px; height: 17px; fill: currentColor; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--green-800); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(1000px 460px at 88% -8%, var(--green-100), transparent 70%),
    linear-gradient(180deg, var(--cream), var(--white));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.1rem; }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--ink-soft); max-width: 34em; }
.lede strong { color: var(--green-800); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.3rem; margin: 0; padding: 0; }
.hero-badges li {
  font-size: .86rem; font-weight: 500; color: var(--ink-soft);
  display: flex; align-items: center; gap: .45rem;
}
.hero-badges li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500); flex: none;
}

.hero-visual { position: relative; }
.hero-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-card-main { padding: clamp(1rem, 3vw, 2rem); border: 1px solid var(--line); }
.hero-card-main .illus { width: 100%; height: auto; }
.hero-stat {
  position: absolute;
  padding: .9rem 1.1rem;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  max-width: 190px;
}
.hero-stat .num { font-family: var(--num); font-size: 1.55rem; font-weight: 700; letter-spacing: -.03em; color: var(--green-700); line-height: 1; }
.hero-stat .lbl { font-size: .74rem; color: var(--ink-soft); line-height: 1.35; margin-top: .3rem; }
.hero-stat:not(.hero-stat-2) { left: -8%; top: 14%; }
.hero-stat-2 { right: -6%; bottom: 8%; }

/* ---------- stats strip ---------- */
.stats { background: var(--green-800); color: #fff; padding: clamp(1.8rem, 4vw, 2.6rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--num);
  font-size: clamp(1.45rem, 2.9vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--gold-400);
}
.stat span { font-size: .84rem; color: rgba(255, 255, 255, .82); }

/* ---------- sections ---------- */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--green-900); color: rgba(255, 255, 255, .88); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--gold-400); }
.section-dark .section-sub { color: rgba(255, 255, 255, .74); }
.section-dark a { color: var(--gold-400); }
.section-dark .grid-footnote,
.section-dark .note { color: rgba(255, 255, 255, .74); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }

/* ---------- products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-100); }
.product-card.featured { border-color: var(--gold-400); background: linear-gradient(180deg, #fffdf6, #fff); }
.product-card .tag {
  position: absolute; top: -11px; left: 1.4rem;
  background: var(--gold-400); color: var(--green-900);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 999px;
}
.product-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--green-050);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.product-icon svg {
  width: 28px; height: 28px;
  fill: none; stroke: var(--green-700); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.product-card p { color: var(--ink-soft); font-size: .93rem; margin-bottom: .9rem; }
.spec { list-style: none; margin: 0; padding: .8rem 0 0; border-top: 1px dashed var(--line); display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.spec li { font-size: .78rem; font-weight: 600; color: var(--green-700); }

.grid-footnote { margin: 1.6rem 0 0; font-size: .92rem; color: var(--ink-soft); }

/* ---------- process ---------- */
.process-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem 2rem;
  counter-reset: step;
}
.process-list li {
  border-top: 2px solid rgba(245, 196, 94, .35);
  padding-top: 1.1rem;
}
.process-list .step {
  font-family: var(--num);
  font-size: .82rem; font-weight: 700;
  color: var(--gold-400);
  letter-spacing: .1em;
}
.process-list h3 { margin: .35rem 0 .45rem; font-size: 1.08rem; }
.process-list p { margin: 0; font-size: .92rem; color: rgba(255, 255, 255, .72); }

/* ---------- quality ---------- */
.quality-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.check-list { display: grid; gap: .8rem; margin-top: 1.6rem; }
.check-list > div { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.check-list svg { width: 20px; height: 20px; flex: none; fill: var(--green-600); margin-top: 2px; }

.certs { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.cert {
  background: var(--green-050);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
}
.cert strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; color: var(--green-800); }
.cert strong em { font-style: normal; font-size: .8em; color: var(--ink-soft); }
.cert span { font-size: .74rem; color: var(--ink-soft); }

/* ---------- farmers ---------- */
.farmers-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.farmers-visual .illus { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.farmer-facts { display: flex; flex-wrap: wrap; gap: 1.8rem; margin: 1.7rem 0 1.2rem; }
.farmer-facts div { display: flex; flex-direction: column; }
.farmer-facts strong { font-family: var(--num); font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; color: var(--green-700); line-height: 1; }
.farmer-facts span { font-size: .82rem; color: var(--ink-soft); }
.note { font-size: .9rem; color: var(--ink-soft); border-left: 3px solid var(--gold-400); padding-left: .9rem; margin: 0; }

/* ---------- audience + quote ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}
.audience {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--line);
}
.audience h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.audience p { margin: 0; font-size: .91rem; color: var(--ink-soft); }

.quote {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 44rem;
  text-align: center;
}
.quote blockquote {
  margin: 0 0 .9rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: -.018em;
  color: var(--green-900);
}
.quote figcaption { font-size: .84rem; color: var(--ink-soft); }

/* ---------- enquiry ---------- */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: .15rem; }
.contact-list span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.contact-list strong { font-weight: 600; font-size: .96rem; color: #fff; }
.contact-list a { color: var(--gold-400); }

.enquiry-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: .9rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .94rem;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(23, 114, 74, .14);
}
.field input[aria-invalid="true"] { border-color: #c0392b; }
.error { margin: 0; font-size: .76rem; color: #c0392b; min-height: 0; }
.form-note { margin: 0; font-size: .84rem; color: var(--green-700); font-weight: 600; text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255, 255, 255, .72); padding: clamp(2.6rem, 5vw, 3.6rem) 0 1.6rem; font-size: .9rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
.footer-brand p { margin-top: 1rem; max-width: 28em; font-size: .87rem; }
.footer-brand .brand-text strong, .footer-brand .brand-text small { color: #fff; }
.footer-brand .brand { color: var(--green-600); }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; margin: 0 0 .4rem; }
.footer-col a, .footer-col span { color: rgba(255, 255, 255, .72); font-size: .88rem; }
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}
.footer-bottom p { margin: 0; font-size: .8rem; }
.disclaimer { color: rgba(255, 255, 255, .45); }

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

/* ==========================================================================
   About page
   ========================================================================== */

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

/* current page in the header nav keeps its underline */
.nav a[aria-current="page"] { color: var(--green-800); font-weight: 600; }
.nav a[aria-current="page"]::after { right: 0; }

/* ---------- page hero ---------- */
.page-hero {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(900px 400px at 92% -20%, var(--green-100), transparent 70%),
    linear-gradient(180deg, var(--cream), var(--white));
}
.page-hero h1 { max-width: 22em; margin-bottom: 1rem; }
.page-hero .lede { max-width: 44em; }

.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; margin-bottom: 1.4rem; }
.breadcrumb span[aria-hidden] { color: var(--line); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb [aria-current] { color: var(--green-700); font-weight: 600; }

/* ---------- company facts strip ---------- */
.company-facts { border-block: 1px solid var(--line); background: var(--white); }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}
.fact-grid > div { background: #fff; padding: 1.15rem 1.2rem; }
.fact-grid dt {
  font-size: .7rem; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: .3rem;
}
.fact-grid dd {
  margin: 0; font-family: var(--num); font-size: 1.02rem; font-weight: 600;
  letter-spacing: -.015em; color: var(--green-900);
}

/* ---------- timeline ---------- */
.timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem 2rem;
}
.timeline li { position: relative; padding-top: 1.5rem; border-top: 2px solid var(--green-100); }
.timeline li::before {
  content: ""; position: absolute; top: -6px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-500); border: 2px solid #fff;
}
.timeline .year {
  font-family: var(--num); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600);
  font-variant-numeric: tabular-nums;
}
.timeline h3 { margin: .3rem 0 .4rem; font-size: 1.06rem; }
.timeline p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* ---------- values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.2rem; }
.value {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
}
.value-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--green-050); display: grid; place-items: center; margin-bottom: 1rem;
}
.value-icon svg {
  width: 27px; height: 27px; fill: none; stroke: var(--green-700);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.value h3 { font-size: 1.08rem; }
.value p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* ---------- spec table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spec-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: .93rem; }
.spec-table thead th {
  text-align: left; padding: .7rem 1rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--gold-400);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.spec-table tbody th {
  text-align: left; font-weight: 600; color: #fff;
  padding: .85rem 1rem; width: 32%; vertical-align: top;
}
.spec-table tbody td { padding: .85rem 1rem; color: rgba(255, 255, 255, .78); vertical-align: top; }
.spec-table tbody tr { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.spec-table tbody tr:last-child { border-bottom: 0; }

/* ---------- leadership ---------- */
.people-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.person {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
}
.person-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em; margin-bottom: 1rem;
}
.person h3 { margin-bottom: .15rem; font-size: 1.05rem; }
.person .role {
  margin: 0 0 .6rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--green-600);
}
.person p:last-child { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.placeholder-note {
  margin: 1.3rem 0 0; font-size: .84rem; color: var(--gold-700);
  border-left: 3px solid var(--gold-400); padding-left: .9rem;
}

/* ---------- community ---------- */
.community-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 3.5rem); align-items: start;
}
.community-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.community-stats > div { background: #fff; padding: 1.4rem 1.2rem; display: flex; flex-direction: column; gap: .2rem; }
.community-stats strong {
  font-family: var(--num); font-size: 1.6rem; font-weight: 700;
  letter-spacing: -.03em; color: var(--green-700); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.community-stats span { font-size: .8rem; color: var(--ink-soft); }

/* ---------- closing CTA band ---------- */
.cta-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.6rem;
  background: var(--green-050);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.cta-band h2 { font-size: clamp(1.4rem, 2.8vw, 1.8rem); margin-bottom: .4rem; }
.cta-band p { margin: 0; max-width: 42em; color: var(--ink-soft); font-size: .95rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

@media (max-width: 1000px) {
  .community-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .community-stats { grid-template-columns: 1fr; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero-grid, .quality-grid, .farmers-grid, .enquiry-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .farmers-visual { max-width: 460px; }
  .hero-stat:not(.hero-stat-2) { left: -4%; }
  .hero-stat-2 { right: -2%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem clamp(18px, 5vw, 32px) 1.2rem;
    margin: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { margin-left: auto; }
  .phone span { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}

@media (max-width: 560px) {
  .hero-stat { position: static; max-width: none; margin-top: .8rem; }
  .hero-stat, .hero-stat-2 { inset: auto; }
  .hero-visual { display: grid; gap: .8rem; }
  .certs { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .btn { width: 100%; justify-content: center; }
  .header-cta .btn { width: auto; }
  .header-cta .btn-primary { display: none; }
}

/* ==========================================================================
   Print — never let a scroll animation hide content on paper
   ========================================================================== */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: static; }
  .nav-toggle, .hero-actions, .enquiry-form .btn { display: none; }
  .section-dark, .stats, .site-footer { background: #fff !important; color: #000 !important; }
  .section-dark h2, .section-dark h3, .section-dark .eyebrow,
  .stats .stat strong, .site-footer h4 { color: #000 !important; }
  .section-dark p, .section-dark .section-sub, .process-list p,
  .contact-list strong, .footer-col a, .footer-col span { color: #222 !important; }
}
