/* ============================================================
   WoolPass — design sample "High Country"
   Built from the brand kit: deep greens / off-whites / earthy golds
   moodboard, the Bharat flyer system (centred serif, hairline rules,
   pathway stepper, founder card) and the skein mark with tick motifs.
   Palette: Paper #F2F0E8 · Deep Green #0E3D2C · Sage #7BA05F · Gold #C2913D
   Type: EB Garamond (flyer serif) · Poppins (Nexa stand-in)
   ============================================================ */

:root {
  --paper: #F2F0E8;        /* off-white paper */
  --paper-2: #E7E4D6;      /* stone — cards, founder block */
  --deep: #0E3D2C;         /* brand deep green (from the mark) */
  --deep-2: #092A1F;       /* darkest — footer */
  --sage: #7BA05F;         /* lockup sage */
  --sage-soft: #A5BF98;    /* moodboard soft sage */
  --gold: #C2913D;         /* earthy gold */
  --ink: #22322B;          /* body ink on paper */
  --muted: #66756A;        /* quiet text on paper */
  --cream-on-deep: #EFEDE2;
  --muted-on-deep: #A9BFA4;
  --hairline: rgba(14, 61, 44, 0.16);
  --radius: 18px;
  --serif: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Poppins", "Century Gothic", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.center-block { text-align: center; }
.reg { font-size: 0.5em; vertical-align: super; }
.wide-only { display: block; }

/* ---------------- type ---------------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-sage { color: var(--sage-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  color: var(--deep);
  margin-top: 14px;
}
.title-cream { color: var(--cream-on-deep); }
.section-sub { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 620px; }

.rule {
  display: block; width: 74px; height: 1px;
  margin: 26px auto;
  background: var(--hairline);
}
.rule-gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block;
  background: var(--deep);
  color: var(--cream-on-deep);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid var(--deep);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { background: var(--deep-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--deep); }
.btn-ghost:hover { background: var(--deep); color: var(--cream-on-deep); }
.btn-cream { background: var(--paper); border-color: var(--paper); color: var(--deep); font-weight: 500; }
.btn-cream:hover { background: #fff; border-color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--hairline); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: block; }
.brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--deep);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { font-size: 14.5px; font-weight: 400; color: var(--ink); position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

/* Brand sits left; everything else rides in .nav-right, so the desktop bar is unchanged
   (space-between across two children) while the phone/tablet menu can pull .nav-links out
   of flow into a dropdown WITHOUT taking the CTA with it. */
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-toggle {
  display: none;                            /* shown by the 960px block below */
  width: 44px; height: 44px;                /* full tap target */
  align-items: center; justify-content: center;
  background: none; border: 0; padding: 0; margin-right: -10px;
  cursor: pointer; color: var(--deep);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 22px; height: 1.6px; border-radius: 2px;
  background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }   /* -> X */
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* Phone/tablet menu. MUST stay after the base .nav-links rules above — same specificity,
   so source order decides. Breakpoint is 960px, not 760px: the full desktop nav doesn't
   fit until ~905px, so 761-905px overflowed horizontally (pre-existing, measured
   2026-07-26: 145px of overflow at 761px on the 8-link home page). Previously the whole
   nav was just `display:none` below 760px with no replacement — a phone visitor could
   reach nothing but the CTA. */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 14px; }
  .nav-links {
    display: none;
    position: absolute;                      /* against .site-header (position:sticky) */
    top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 4px 28px 16px;                  /* 28px = .container padding, so text lines up */
    background: var(--paper);                /* solid: the header blur isn't enough behind text */
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 18px 40px -22px rgba(14, 61, 44, 0.45);
    max-height: calc(100vh - 74px);
    max-height: calc(100dvh - 74px);         /* dvh where supported - mobile URL bar */
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    font-size: 16.5px; padding: 15px 2px;    /* >=44px rows - shed-glove friendly */
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links > a:not(.btn):last-child { border-bottom: 0; }
  .nav-links a:not(.btn)::after { display: none; }   /* kill the desktop hover underline */
}

/* Narrow phones: brand + CTA + hamburger must fit one 74px bar without overflow. Header
   padding only (.nav IS the .container here), so page content is untouched; the dropdown's
   inner padding follows it so the links stay aligned to the brand. */
@media (max-width: 480px) {
  .nav { padding-left: 18px; padding-right: 18px; }
  .nav-links { padding-left: 18px; padding-right: 18px; }
  .brand { gap: 8px; }
  .brand-name { font-size: 16px; }
  .nav-right { gap: 8px; }
  .nav-right > .btn-sm { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
}

/* Very narrow: the wordmark yields to the mark so the CTA never clips. The mark still
   links home and .brand keeps its aria-label. */
@media (max-width: 380px) {
  .brand-name { display: none; }
  .nav-right > .btn-sm { padding: 8px 12px; font-size: 12.5px; }
}

/* ---------------- hero ---------------- */
/* The hero fills exactly one screen: copy centred in the space above, the hills
   pinned to the bottom of the fold (heights in vh so the panorama is never cut). */
.hero { position: relative; display: flex; flex-direction: column; min-height: calc(100vh - 74px); min-height: calc(100svh - 74px); }
.hero-inner {
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(20px, 3vh, 44px) 28px clamp(10px, 1.5vh, 20px);
}
.hero-mark { width: 96px; height: auto; margin: 0 auto; display: block; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7.4vw, 92px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--deep);
}
.hero-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 25px);
  color: var(--ink);
}
.hero-sub {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16.5px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* hills panorama */
.hills { position: relative; margin-top: 0; }
.hills-svg { display: block; width: 100%; height: auto; }
.hill { will-change: transform; }

/* ---------------- pillar strip ---------------- */
.pillars { background: var(--deep); border-top: 1px solid var(--deep-2); }
.pillars-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  padding: 18px 28px;
  flex-wrap: wrap;
}
.pillars-row span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-on-deep);
}
.tick { width: 13px; height: 13px; color: var(--gold); flex: none; }

/* ---------------- sections ---------------- */
.section { padding: clamp(76px, 11vh, 120px) 0; }

/* what it is */
.truth-grid { display: grid; gap: clamp(36px, 5vh, 56px); }
.truth-lead .section-title { max-width: 21ch; }
.truth-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: 0 18px 40px -30px rgba(14, 61, 44, 0.35);
}
.tcard-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.tcard h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  color: var(--deep);
  margin: 8px 0 8px;
}
.tcard p { font-size: 15px; color: var(--muted); }

/* ---------------- deep band + pathway ---------------- */
.band-deep {
  position: relative;
  background: var(--deep);
  color: var(--cream-on-deep);
  padding: clamp(80px, 12vh, 130px) 0;
  overflow: hidden;
}
.band-sub {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted-on-deep);
  font-size: 16.5px;
}

.pathway {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(48px, 7vh, 72px);
  counter-reset: step;
}
.pathway li {
  position: relative;
  text-align: center;
  padding: 0 10px;
}
/* connector line */
.pathway li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px; left: calc(50% + 30px); right: calc(-50% + 30px);
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 237, 226, 0.4), rgba(239, 237, 226, 0.15));
}
.step-node {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-soft);
  color: var(--gold);
  background: rgba(9, 42, 31, 0.5);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.step-node svg { width: 16px; height: 16px; }
.pathway li:hover .step-node { background: var(--sage); border-color: var(--sage); color: var(--deep-2); transform: scale(1.08); }
.step-label {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--cream-on-deep);
}
.step-label em {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted-on-deep);
}

/* ---------------- growers ---------------- */
.growers-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.tick-list { list-style: none; }
.tick-list li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 19px 2px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 21px);
  color: var(--deep);
}
.tick-list li:first-child { border-top: 1px solid var(--hairline); }
.tick-li { width: 15px; height: 15px; color: var(--sage); position: relative; top: 1px; }

/* ---------------- closing ---------------- */
.closing { text-align: center; }
.closing-mark {
  position: absolute;
  right: -70px; bottom: -60px;
  width: min(460px, 55vw);
  opacity: 0.1;
  pointer-events: none;
}
.closing-line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.18;
  color: var(--cream-on-deep);
}
.closing-line em { font-style: italic; color: var(--sage-soft); }

/* ---------------- founder card ---------------- */
.founder-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  max-width: 880px;
  margin: 0 auto;
}
.founder-card-mark { display: block; }
.founder-name { font-family: var(--sans); font-weight: 600; font-size: 18px; color: var(--deep); }
.founder-role { font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.founder-contacts { list-style: none; margin-top: 14px; }
.founder-contacts li { font-size: 15px; color: var(--ink); padding: 1.5px 0; }
.founder-contacts a:hover { color: var(--deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.founder-card-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--deep);
  text-align: right;
}

/* ---------------- footer ---------------- */
.site-footer { background: var(--deep-2); color: var(--muted-on-deep); }
.footer-inner { text-align: center; padding: 64px 28px 40px; }
.footer-mark { display: block; margin: 0 auto 16px; opacity: 0.9; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-on-deep);
}
.footer-links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 22px; }
.footer-links a { font-size: 14px; color: var(--cream-on-deep); }
.footer-links a:hover { color: var(--sage-soft); }
.footer-fine { margin-top: 30px; font-size: 12.5px; }

/* ---------------- reveal ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .step-node { transition: none; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 960px) {
  .truth-cards { grid-template-columns: 1fr; }
  .growers-grid { grid-template-columns: 1fr; }
  .pathway { grid-template-columns: 1fr; gap: 22px; justify-items: start; }
  .pathway li { display: flex; align-items: center; gap: 16px; text-align: left; padding: 0; }
  .pathway li:not(:last-child)::after {
    top: 42px; left: 20px; right: auto;
    width: 1px; height: 22px;
  }
  .step-label { margin-top: 0; }
  .step-label em { display: inline; margin-left: 6px; }
  .wide-only { display: inline; }
}
@media (max-width: 760px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-card-mark { margin: 0 auto; }
  .founder-card-note { text-align: center; }
}

/* ============================================================
   Content port from woolpass.com (2026-07-06) — the chain, people,
   who-it's-for, story, subpages + the interactive skein mark.
   ============================================================ */

/* ---- flowing fibres behind the hero (ported from woolpass.com, paper-toned) ---- */
.hero-fibres {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

/* ---- interactive skein mark (hero — the real artwork) ---- */
.skein { display: inline-block; margin: 0 auto 14px; cursor: pointer; will-change: transform; transition: transform .3s ease; }
.hero-hint { margin: 18px auto 0; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); opacity: .75; }
.skein img { display: block; height: auto; }
.skein.spin { animation: skein-spin .9s cubic-bezier(.5, .05, .3, 1); }
@keyframes skein-spin {
  from { transform: perspective(600px) rotateY(0deg); }
  to { transform: perspective(600px) rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) { .skein { transition: none; } .skein.spin { animation: none; } }

/* ---- the chain (five links, one thread) ---- */
.chain-section .center-sub { margin-left: auto; margin-right: auto; text-align: center; }
.chain-grid { display: grid; grid-template-columns: 46px 1fr; gap: clamp(16px, 3vw, 36px); margin-top: clamp(40px, 6vh, 64px); }
.chain-rail { position: relative; }
.chain-track, .chain-fill {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; width: 2px; border-radius: 2px;
}
.chain-track { bottom: 0; background: var(--hairline); }
.chain-fill { height: 0; background: linear-gradient(180deg, var(--deep), var(--gold)); transition: height .2s linear; }
.chain-stages { display: grid; gap: clamp(40px, 7vh, 72px); }
.stage { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(18px, 3vw, 40px); align-items: center; }
.stage:nth-child(even) .stage-photo { order: 2; }
.stage:nth-child(even) .stage-body { order: 1; }
.chain-node {
  position: absolute; top: 50%; left: calc(-1 * clamp(16px, 3vw, 36px) - 23px - 12px);
  transform: translate(-50%, -50%);
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper); border: 1.5px solid var(--hairline); color: transparent;
  transition: background .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
}
.chain-node svg { width: 13px; height: 13px; }
.stage.lit .chain-node { background: var(--gold); border-color: var(--gold); color: #14100a; box-shadow: 0 0 0 5px rgba(194, 145, 61, .15); }
.stage-photo { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); box-shadow: 0 24px 50px -34px rgba(14, 61, 44, 0.5); }
.stage-photo img { display: block; width: 100%; height: clamp(190px, 26vw, 280px); object-fit: cover; }
.stage-no { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); letter-spacing: .08em; }
.stage-body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2.4vw, 27px); color: var(--deep); margin: 6px 0 8px; }
.stage-body p { color: var(--muted); font-size: 15.5px; max-width: 46ch; }
@media (max-width: 760px) {
  .chain-grid { grid-template-columns: 26px 1fr; }
  .stage { grid-template-columns: 1fr; }
  .stage:nth-child(even) .stage-photo { order: 0; }
  .chain-node { left: calc(-1 * clamp(16px, 3vw, 36px) - 13px - 6px); }
}

/* ---- stone bands (people / who) ---- */
.band-stone { background: var(--paper-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: clamp(64px, 9vh, 96px) 0; }
.who-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: clamp(30px, 5vh, 48px); }
.wcard { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px 22px; }
.wcard h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--deep); margin: 0 0 6px; }
.wcard p { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }

/* ---- story teaser ---- */
.story-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.story-portrait { margin: 0; text-align: center; }
.story-portrait img { width: min(100%, 300px); aspect-ratio: 4 / 5; object-fit: cover; border-radius: 999px 999px var(--radius) var(--radius); border: 1px solid var(--hairline); box-shadow: 0 24px 50px -34px rgba(14, 61, 44, 0.5); }
.story-portrait figcaption { margin-top: 12px; font-size: 14px; color: var(--muted); }
.story-portrait figcaption strong { font-family: var(--sans); font-weight: 600; color: var(--deep); font-size: 15px; }
.textlink { color: var(--deep); font-weight: 500; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }
.textlink:hover { color: var(--gold); }
@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; } }

/* ---- subpages (about / team / contact) ---- */
.page-hero { padding: clamp(48px, 8vh, 90px) 0 clamp(28px, 5vh, 48px); text-align: center; }
.page-title { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 5vw, 56px); line-height: 1.12; color: var(--deep); max-width: 22ch; margin: 14px auto 0; }
.lede { max-width: 640px; margin: 18px auto 0; color: var(--muted); font-size: 17px; }
.story-hero { margin: clamp(28px, 5vh, 48px) auto 0; max-width: 880px; }
.story-hero img { width: 100%; border-radius: var(--radius); border: 1px solid var(--hairline); box-shadow: 0 30px 60px -40px rgba(14, 61, 44, 0.55); }
.essay { max-width: 680px; margin: 0 auto; }
.essay p { color: var(--ink); font-size: 16.5px; }
.essay p.lead { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 23px); line-height: 1.5; color: var(--deep); }
.essay .pull { font-family: var(--serif); font-style: italic; font-size: clamp(21px, 2.6vw, 27px); color: var(--gold); text-align: center; margin: 30px 0; }
.litany { display: grid; gap: 6px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--deep); }
.sig { margin-top: 26px; text-align: right; }
.sig-name { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--deep); }
.sig-role { font-size: 13px; color: var(--muted); }
.cfw-band { background: var(--paper-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: clamp(48px, 7vh, 72px) 0; text-align: center; }
.cfw-logo { max-width: 300px; margin: 18px auto 12px; display: block; border-radius: 10px; }
.cfw-cap { color: var(--muted); font-size: 14px; max-width: 460px; margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 56px); align-items: center; }
.split-figure { margin: 0; }
.split-figure img { width: 100%; border-radius: var(--radius); border: 1px solid var(--hairline); }
.split-figure figcaption { margin-top: 8px; font-size: 13px; color: var(--muted); }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 780px; margin: clamp(28px, 5vh, 44px) auto 0; }
.stat { background: var(--paper-2); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px 18px; text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); color: var(--gold); font-weight: 600; }
.stat-label { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }
.member { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); padding: clamp(32px, 5vh, 48px) 0; border-top: 1px solid var(--hairline); align-items: start; }
.member:first-child { border-top: none; }
.member-aside { text-align: center; }
.member-portrait { display: block; width: 170px; height: 200px; margin: 0 auto; border-radius: 999px 999px 14px 14px; overflow: hidden; border: 1px solid var(--hairline); }
.member-portrait img { width: 100%; height: 100%; object-fit: cover; }
.member-name { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--deep); margin: 12px 0 0; }
.member-role { font-size: 13px; color: var(--muted); margin: 3px 0 0; }
.member-bio p { color: var(--ink); font-size: 15.5px; }
.member-link { color: var(--deep); font-weight: 500; border-bottom: 1.5px solid var(--gold); font-size: 14.5px; }
@media (max-width: 700px) { .member { grid-template-columns: 1fr; } }
.contact-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-email a { font-family: var(--serif); font-size: clamp(21px, 2.6vw, 28px); color: var(--deep); border-bottom: 1.5px solid var(--gold); }
.contact-note { color: var(--muted); font-size: 14.5px; }
.contact-list { list-style: none; margin: 18px 0 0; padding: 0; }
.contact-list li { margin: 8px 0; font-size: 15px; color: var(--ink); }
.contact-list .ci { color: var(--gold); margin-right: 10px; }
.contact-form { background: var(--paper-2); border: 1px solid var(--hairline); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
.contact-form label { display: block; font-size: 13px; font-weight: 500; color: var(--deep); margin: 14px 0 5px; }
.contact-form .req { color: var(--gold); }
.contact-form input, .contact-form textarea {
  width: 100%; box-sizing: border-box; background: var(--paper); color: var(--ink);
  border: 1px solid var(--hairline); border-radius: 10px; padding: 11px 13px;
  font-family: var(--sans); font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn { border: none; cursor: pointer; margin-top: 18px; width: 100%; }
.form-status { margin: 10px 0 0; font-size: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--sage); }
.form-status.err { color: #b0532e; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.nav-links a.active { color: var(--gold); }

/* ---- For NZ growers — deep green band under the hero ---- */
.growers-band { padding: clamp(56px, 8vh, 88px) 0; }
.growers-band-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.tick-list-deep { list-style: none; margin: 0; padding: 0; }
.tick-list-deep li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid rgba(242, 240, 232, 0.12); color: var(--cream-on-deep); font-size: 16px; }
.tick-list-deep li:last-child { border-bottom: none; }
.tick-list-deep .tick-li { color: var(--gold); width: 15px; height: 15px; flex: none; position: relative; top: 5px; }
@media (max-width: 760px) { .growers-band-grid { grid-template-columns: 1fr; } }

/* ---- Global / India region switch (nav pill) ---- */
.region-switch { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: 999px; overflow: hidden; }
.region-switch a { padding: 5px 13px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.region-switch a.active { background: var(--deep); color: var(--cream-on-deep); }
.region-switch a:not(.active):hover { color: var(--deep); }
.region-switch a:not(.btn)::after { display: none; }

/* Region pill inside the phone dropdown — must sit after the .region-switch base rules
   above (same specificity, source order decides). */
@media (max-width: 960px) {
  .nav-links .region-switch { align-self: flex-start; margin: 10px 0 6px; }
  .nav-links .region-switch a { padding: 8px 16px; font-size: 12.5px; }
}
