/* Grove, site stylesheet
   Palette and type follow the Grove presentation. See README.md before changing colours. */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-400-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette, from the presentation */
  --paper: #F5F0EA;
  --forest: #213529;
  --sand: #D4C8B2;
  --ink: #2E2B26;
  --grey: #827D77;
  --terracotta: #A86B4A;
  /* Text weight versions of terracotta and warm grey, same hue, darkened only
     enough to pass WCAG AA (4.5:1) as small text on the paper background */
  --terracotta-text: #965F42;
  --grey-text: #706C67;

  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Lato", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --gap: clamp(16px, 2.6vw, 36px);
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (min-width: 1024px) {
  :root { --header-h: 80px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body { font-size: 1.0625rem; }
}

img { display: block; max-width: 100%; height: auto; }
figure img { width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
table { border-collapse: collapse; }

::selection { background: var(--forest); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--terracotta-text);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 100;
  background: var(--forest);
  color: var(--paper);
  padding: 10px 16px;
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 10vw, 140px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--flush-top { padding-top: 0; }

.band--sand { background: var(--sand); }
.band--forest { background: var(--forest); color: var(--paper); }

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--gap);
  }
}

/* ---------- Type ---------- */

.kicker {
  display: block;
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}
@media (min-width: 1024px) {
  .kicker { font-size: 0.8125rem; }
}
.band--sand .kicker { color: var(--forest); }
.band--forest .kicker { color: var(--sand); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 1.55rem + 4.4vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--forest);
  text-wrap: balance;
}
.headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--forest);
  text-wrap: balance;
}
.title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.35rem + 1.1vw, 2.25rem);
  line-height: 1.15;
  color: var(--forest);
}
.label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--forest);
}
.band--forest .display,
.band--forest .headline,
.band--forest .title,
.band--forest .label { color: var(--paper); }

.lead {
  font-size: clamp(1.125rem, 1rem + 0.45vw, 1.3125rem);
  line-height: 1.65;
}
.serif-lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.15rem + 1.35vw, 2.25rem);
  line-height: 1.32;
  color: var(--forest);
  text-wrap: pretty;
}
.band--forest .serif-lead { color: var(--paper); }

.quiet { color: var(--grey-text); }
.band--forest .quiet { color: var(--sand); }
.band--sand .quiet { color: var(--ink); }

.measure { max-width: 38em; }

.italic-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2.1rem);
  line-height: 1.3;
  color: var(--forest);
}

/* Old style figures for sequence numbers, as in the deck */
.num {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--terracotta-text);
}
.step .num { color: var(--terracotta); }

.icon {
  width: 36px;
  height: 36px;
  color: var(--forest);
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.band--forest .icon { color: var(--sand); }

.rule-top { border-top: 1px solid var(--sand); }

/* Links inside running text */
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

/* Underline that draws in on hover */
.draw {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.draw::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease);
}
a:hover .draw::after,
a.draw:hover::after,
a:focus-visible .draw::after,
.draw.is-current::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .draw::after { transition: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background-color: rgba(245, 240, 234, 0);
  border-bottom: 1px solid rgba(212, 200, 178, 0);
  transition: background-color 0.6s var(--ease), border-color 0.6s var(--ease);
}
.site-header.is-scrolled,
.menu-open .site-header {
  background-color: rgba(245, 240, 234, 0.96);
  border-bottom-color: var(--sand);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
.brand__symbol { height: 38px; width: auto; }
.brand__wordmark { height: 15px; width: auto; margin-top: 3px; }
@media (min-width: 1024px) {
  .brand { gap: 14px; }
  .brand__symbol { height: 46px; }
  .brand__wordmark { height: 18px; margin-top: 4px; }
}

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: block; }
  .nav ul { display: flex; gap: clamp(24px, 2.6vw, 40px); }
  .nav a {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding-block: 8px;
  }
  .nav a[aria-current="page"] .draw::after { transform: scaleX(1); }
}

.menu-button {
  appearance: none;
  border: 0;
  background: none;
  margin: 0 -10px 0 0;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.menu-button__lines {
  position: relative;
  width: 22px;
  height: 9px;
}
.menu-button__lines::before,
.menu-button__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease), top 0.45s var(--ease);
}
.menu-button__lines::before { top: 0; }
.menu-button__lines::after { top: 8px; }
.menu-open .menu-button__lines::before { top: 4px; transform: rotate(45deg); }
.menu-open .menu-button__lines::after { top: 4px; transform: rotate(-45deg); }
@media (min-width: 1024px) {
  .menu-button { display: none; }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--paper);
  padding: calc(var(--header-h) + 24px) var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}
.menu-open .menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease), visibility 0s;
}
.menu ol { border-top: 1px solid var(--sand); }
.menu li { border-bottom: 1px solid var(--sand); }
.menu a.menu__link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 2.6rem);
  line-height: 1.1;
  color: var(--forest);
}
.menu a.menu__link .num { font-size: 1rem; width: 1.6em; }
.menu a[aria-current="page"] .draw::after { transform: scaleX(1); }
.menu__foot {
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--grey-text);
}
.menu__foot a { color: var(--forest); }
@media (min-width: 1024px) {
  .menu { display: none; }
}

/* ---------- Page header (inner pages) ---------- */

.page-head {
  padding-top: calc(var(--header-h) + clamp(56px, 9vw, 128px));
  padding-bottom: clamp(48px, 7vw, 96px);
}
.page-head__intro { margin-top: clamp(24px, 3vw, 40px); }

/* ---------- Folio, the running line that echoes the deck ---------- */

.folio {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 24px;
  row-gap: 4px;
  margin-top: clamp(56px, 8vw, 104px);
  padding-top: 14px;
  border-top: 1px solid var(--sand);
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.folio__brand { min-width: 7em; }
.folio__section { flex: 1 1 auto; }
.folio__ref { margin-left: auto; letter-spacing: 0.1em; font-variant-numeric: lining-nums tabular-nums; }
@media (min-width: 768px) {
  .folio__brand { width: calc((100% - 11 * var(--gap)) / 12 * 3 + 2 * var(--gap)); min-width: 0; }
}
.band--sand .folio { border-top-color: rgba(33, 53, 41, 0.22); color: var(--ink); }
.band--forest .folio { border-top-color: rgba(212, 200, 178, 0.28); color: var(--sand); }

/* ---------- Reveal motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.75s var(--ease),
      transform 0.75s var(--ease);
    transition-delay: calc(var(--i, 0) * 110ms);
  }
  .js [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Home: hero ---------- */

.hero {
  background: var(--sand);
  min-height: min(90svh, 860px);
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: clamp(32px, 5vw, 64px);
  display: flex;
}
.hero .wrap {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
}
.hero__mark {
  align-self: center;
  justify-self: center;
  width: clamp(148px, 17vw, 216px);
  margin-block: clamp(32px, 6vh, 72px);
}
.hero__foot {
  display: grid;
  gap: 20px;
  align-items: end;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.9rem, 1.6rem + 5.4vw, 6.25rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--forest);
  text-wrap: balance;
}
.hero__rule {
  width: min(240px, 50%);
  height: 1px;
  background: var(--terracotta);
  margin-top: clamp(20px, 2.5vw, 32px);
}
.hero__place {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}
@media (min-width: 768px) {
  .hero__foot { grid-template-columns: 1fr auto; }
  .hero__place { padding-bottom: 0.6em; }
}

/* ---------- Home: identity ---------- */

.identity__head { grid-column: 1 / -1; }
.identity__lead { grid-column: 1 / -1; }
.identity__body { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .identity__head { grid-column: 1 / span 9; }
  .identity__lead { grid-column: 1 / span 7; }
  .identity__body { grid-column: 8 / span 5; padding-top: 0.35em; }
}
@media (min-width: 1024px) {
  .identity__lead { grid-column: 1 / span 6; }
  .identity__body { grid-column: 8 / span 5; }
}

/* ---------- Home: supply figures ---------- */

.figures {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--sand);
}
.figure {
  padding-block: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--sand);
}
.figure__value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 12px;
  color: var(--forest);
}
.figure__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(5.5rem, 3rem + 11vw, 11.5rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
}
.figure__unit {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.figure__label {
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.7rem);
  line-height: 1.25;
  color: var(--forest);
}
.figure__note {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--grey-text);
}
@media (min-width: 768px) {
  .figures { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--sand); }
  .figure { border-bottom: 0; padding-inline: clamp(16px, 2.4vw, 36px); }
  .figure:first-child { padding-left: 0; }
  .figure + .figure { border-left: 1px solid var(--sand); }
  .figure__num { font-size: clamp(4.4rem, 1rem + 8.4vw, 10rem); }
}

/* ---------- Pillars and columns ---------- */

.columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.column {
  padding-block: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--sand);
}
.column .icon { margin-bottom: 22px; }
.column__title { margin-bottom: 14px; }
@media (min-width: 768px) {
  .columns--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 0; }
  .columns--3 .column { padding-inline: clamp(16px, 2.4vw, 36px); padding-top: 8px; border-top: 0; }
  .columns--3 .column:first-child { padding-left: 0; }
  .columns--3 .column + .column { border-left: 1px solid var(--sand); }
  .columns--3.columns--ruled { border-top: 1px solid var(--sand); padding-top: clamp(28px, 4vw, 44px); }
  .columns--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 5vw, 72px); }
}

.pillars .column__title { font-family: var(--sans); font-weight: 700; font-size: 1.0625rem; color: var(--forest); }

/* ---------- Standing statement ---------- */

.statement {
  padding-block: clamp(96px, 14vw, 200px);
  text-align: center;
}
.statement p {
  max-width: 17em;
  margin-inline: auto;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 1.3rem + 3.8vw, 4.6rem);
  line-height: 1.12;
  color: var(--paper);
  text-wrap: balance;
}

/* ---------- Contents list ---------- */

.contents { border-top: 1px solid var(--sand); }
.contents li { border-bottom: 1px solid var(--sand); }
.contents a {
  display: grid;
  grid-template-columns: 2.6em minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 6px;
  padding-block: clamp(22px, 3vw, 34px);
  text-decoration: none;
}
.contents .num { font-size: 1.25rem; line-height: 1.5; }
.contents__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--forest);
}
.contents__desc { grid-column: 2; color: var(--grey-text); }
@media (min-width: 768px) {
  .contents a {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--gap);
    align-items: baseline;
  }
  .contents .num { grid-column: 1 / span 1; }
  .contents__name { grid-column: 2 / span 5; }
  .contents__desc { grid-column: 8 / span 5; }
}

/* ---------- Next page line ---------- */

.next { border-top: 1px solid var(--sand); }
.next a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 20px;
  row-gap: 6px;
  padding-block: clamp(28px, 4vw, 44px);
  text-decoration: none;
}
.next__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-text);
  min-width: 6em;
}
.next .num { font-size: 1.25rem; }
.next__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--forest);
}

/* ---------- The Model ---------- */

.asset-light__text { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .asset-light__kicker { grid-column: 1 / span 3; }
  .asset-light__text { grid-column: 4 / span 9; }
}

.build__head { grid-column: 1 / -1; }
.build__steps { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .build__head { grid-column: 1 / span 4; align-self: start; position: sticky; top: calc(var(--header-h) + 40px); }
  .build__steps { grid-column: 6 / span 7; }
}
.steps { border-top: 1px solid var(--sand); counter-reset: none; }
.step {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 8px;
  padding-block: clamp(22px, 3vw, 32px);
  border-bottom: 1px solid var(--sand);
}
.step .num { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); line-height: 1; }
.step__name { align-self: center; }
.step__desc { grid-column: 2; }
@media (min-width: 768px) {
  .step { grid-template-columns: 4.2rem 13rem minmax(0, 1fr); column-gap: 20px; align-items: baseline; }
  .step__name { align-self: baseline; }
  .step__desc { grid-column: 3; }
}
.build__close { margin-top: clamp(40px, 5vw, 64px); }

/* ---------- Products ---------- */

.part-index {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--sand);
  margin-top: clamp(40px, 5vw, 64px);
}
.part-index a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
  text-decoration: none;
}
.part-index .num { font-size: 1.2rem; }
.part-index__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.9rem);
  color: var(--forest);
}
.part-index__desc { display: block; font-size: 0.9375rem; color: var(--grey-text); }
@media (min-width: 768px) {
  .part-index { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--gap); }
}

.fresh__text { grid-column: 1 / -1; }
.fresh__media { grid-column: 1 / -1; }
.fresh__orcha { width: 92px; margin-bottom: clamp(28px, 4vw, 44px); }
@media (min-width: 768px) {
  .fresh__orcha { width: 104px; }
}
@media (min-width: 1024px) {
  .fresh__text { grid-column: 1 / span 5; }
  .fresh__media { grid-column: 6 / span 7; align-self: center; }
}

.cropbook { margin-top: clamp(72px, 10vw, 140px); }
.crop-feature__note { margin-top: 12px; }
.next--after-band { border-top: 0; }

.subhead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.crop-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
  padding-block: clamp(32px, 4vw, 48px) clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.crop-feature__group { margin: 0; }
.crop-feature__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4rem, 2.4rem + 7vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.crop-feature__window {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2rem + 0.7vw, 1.8rem);
  line-height: 1.25;
  color: var(--forest);
}
@media (min-width: 768px) {
  .crop-feature { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); align-items: end; }
  .crop-feature__head { grid-column: 1 / span 6; }
  .crop-feature__body { grid-column: 7 / span 6; }
}

.sourced { margin-top: clamp(64px, 8vw, 112px); }
.sourced__text { grid-column: 1 / -1; }
.sourced__media { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .sourced__text { grid-column: 1 / span 6; align-self: center; }
  .sourced__media { grid-column: 7 / span 6; }
}
.crop-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--sand);
}
.crop-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--sand);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--forest);
}
.crop-list small {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--grey-text);
  margin-left: 6px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .crop-list { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: var(--gap); }
}
@media (min-width: 1024px) {
  .crop-list li { padding: 11px 0; }
}
.direction {
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem);
  line-height: 1.35;
  color: var(--forest);
}

/* Season calendar */

.calendar-section { margin-top: clamp(80px, 11vw, 160px); }
.calendar-intro { grid-column: 1 / -1; }
.calendar-notes { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .calendar-intro { grid-column: 1 / span 5; }
  .calendar-notes { grid-column: 7 / span 6; padding-top: 0.5em; }
}
.calendar-notes li {
  padding: 18px 0;
  border-top: 1px solid var(--sand);
}
.calendar-notes li:last-child { border-bottom: 1px solid var(--sand); }
.calendar-notes strong { display: block; color: var(--forest); font-weight: 700; margin-bottom: 4px; }

.legend {
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 10px;
  margin: clamp(40px, 5vw, 64px) 0 20px;
  font-size: 0.8125rem;
  color: var(--grey-text);
}
.legend li { display: inline-flex; align-items: center; gap: 10px; }
.legend .swatch { position: relative; width: 26px; height: 10px; }

.calendar {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--forest);
}
.calendar caption { text-align: left; }
.calendar th,
.calendar td {
  padding: 0;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}
.calendar thead th {
  padding: 12px 0;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-text);
  border-bottom: 1px solid var(--sand);
  /* Month letters stay in view while a buyer reads down the crops */
  position: sticky;
  top: var(--header-h);
  z-index: 2;
  background: var(--paper);
}
.calendar tbody tr { border-bottom: 1px solid var(--sand); }
.calendar tbody th {
  padding: 18px 16px 18px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--forest);
}
.calendar tbody th small {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}
.calendar .col-crop { width: 21%; }
.calendar .col-months { width: 53%; }
.calendar .col-window { width: 26%; }
.calendar thead th.h-window { padding-left: 24px; }
.calendar td.window {
  padding: 18px 0 18px 24px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink);
}

.months {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 3px;
  align-items: end;
}
.months--head span { text-align: center; }
.m-short { display: none; }

.c {
  position: relative;
  height: 12px;
}
.c--in { background: var(--forest); }
.c--ext { background: var(--sand); }
.c--peak { background: var(--forest); }
.c--peak::after,
.swatch--peak::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--terracotta);
}
.c--start::before,
.c--mid::before,
.swatch--start::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 22px;
  background: var(--forest);
}
.c--start::before, .swatch--start::before { left: 0; }
.c--mid::before { left: 50%; }
.swatch--in { background: var(--forest); }
.swatch--ext { background: var(--sand); }
.swatch--peak { background: var(--forest); }
.swatch--start { background: transparent; }

@media (max-width: 767.98px) {
  .calendar,
  .calendar thead,
  .calendar tbody,
  .calendar tr,
  .calendar th,
  .calendar td { display: block; width: 100%; }
  .calendar colgroup { display: none; }
  .calendar thead { position: sticky; top: var(--header-h); z-index: 2; background: var(--paper); }
  .calendar thead th { position: static; }
  .calendar thead tr { display: block; }
  .calendar thead th.h-crop,
  .calendar thead th.h-window { display: none; }
  .calendar thead th.h-months { padding: 10px 0; }
  .calendar tbody tr { padding: 18px 0 16px; }
  .calendar tbody th { padding: 0 0 12px; }
  .calendar td.window { padding: 12px 0 0; }
  .m-long { display: none; }
  .m-short { display: inline; }
  .months { column-gap: 2px; }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .m-long { display: none; }
  .m-short { display: inline; }
  .calendar .col-crop { width: 22%; }
  .calendar .col-months { width: 48%; }
  .calendar .col-window { width: 30%; }
  .calendar tbody th { font-size: 1.2rem; }
}

/* FMCG */

.categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--sand);
}
.category {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 20px;
  padding-block: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--sand);
}
.category .title { margin-bottom: 12px; }
.category p { grid-column: 2; }
@media (min-width: 768px) {
  .categories { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 5vw, 80px); }
}
.formats {
  margin-top: clamp(28px, 4vw, 40px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.7rem);
  line-height: 1.35;
  color: var(--terracotta-text);
}

.private__text { grid-column: 1 / -1; }
.private__items { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .private__text { grid-column: 1 / span 6; }
  .private__items { grid-column: 8 / span 5; }
}
.items li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 18px;
  padding-block: 22px;
  border-top: 1px solid rgba(212, 200, 178, 0.28);
}
.items li:last-child { border-bottom: 1px solid rgba(212, 200, 178, 0.28); }
.items .label { margin-bottom: 6px; }
.items p { grid-column: 2; }
.items .icon { width: 30px; height: 30px; margin-top: 2px; }

/* ---------- Quality ---------- */

.principle { padding-top: clamp(40px, 6vw, 80px); }
.principle__line.serif-lead { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.4rem); line-height: 1.18; }
.trace-block { margin-block: clamp(72px, 10vw, 128px) clamp(64px, 8vw, 104px); }
.principle__line { grid-column: 1 / -1; }
.principle__body { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .principle__line { grid-column: 1 / span 10; }
  .principle__body { grid-column: 5 / span 7; }
}
@media (min-width: 1024px) {
  .principle__line { grid-column: 1 / span 9; }
  .principle__body { grid-column: 6 / span 6; }
}

.trace {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: clamp(24px, 3vw, 40px);
}
.trace li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-left: 1px solid var(--sand);
}
.trace li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 31px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}
.trace .num { display: block; font-size: 1.1rem; line-height: 1; margin-bottom: 8px; }
.trace__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
  line-height: 1.1;
  color: var(--forest);
}
.trace__back {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-text);
}
@media (min-width: 768px) {
  .trace { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: var(--gap); }
  .trace li { padding: 30px 0 0; border-left: 0; border-top: 1px solid var(--sand); }
  .trace li::before { left: 0; top: -4px; }
}

.docs__head { grid-column: 1 / -1; }
.docs__list { grid-column: 1 / -1; }
@media (min-width: 1024px) {
  .docs__head { grid-column: 1 / span 5; }
  .docs__list { grid-column: 7 / span 6; }
}
.doc-list { border-top: 1px solid rgba(212, 200, 178, 0.28); counter-reset: doc; }
.doc-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-block: clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid rgba(212, 200, 178, 0.28);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 1.25rem + 1.3vw, 2.3rem);
  line-height: 1.15;
  color: var(--paper);
}
.doc-list .num { color: var(--sand); font-size: 1.1rem; min-width: 1.8em; }

/* ---------- Company ---------- */

.vision__block { grid-column: 1 / -1; }
.mission__block { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .vision__block { grid-column: 1 / span 10; }
  .mission__block { grid-column: 1 / span 8; }
}
@media (min-width: 1024px) {
  .vision__block { grid-column: 1 / span 8; }
  .mission__block { grid-column: 7 / span 6; }
}

.values {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--sand);
}
.value {
  padding-block: clamp(24px, 3.4vw, 40px);
  border-bottom: 1px solid var(--sand);
}
.value .title { margin-bottom: 10px; }
@media (min-width: 768px) {
  .values { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 5vw, 80px); }
}

.route__col { padding-top: clamp(24px, 3vw, 36px); border-top: 1px solid rgba(33, 53, 41, 0.22); }
.route__col .icon { margin-bottom: 18px; }
.route__col .title { margin-bottom: 16px; }

.person { display: grid; grid-template-columns: minmax(0, 1fr); row-gap: clamp(28px, 4vw, 48px); }
.person__photo { background: var(--sand); }
.person__role {
  display: block;
  margin-top: 12px;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}
.person__quote { margin: clamp(24px, 3vw, 36px) 0; padding-top: clamp(24px, 3vw, 36px); border-top: 1px solid var(--sand); }
.person__aside {
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 20px;
  border-top: 1px solid var(--sand);
  font-style: italic;
  color: var(--grey-text);
}
.person__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--forest);
}
.person--board .person__name { font-size: clamp(2rem, 1.5rem + 2vw, 3.1rem); }

.person--lead .person__photo { width: 100%; }
.person--board .person__photo { width: 62%; max-width: 300px; }

@media (min-width: 768px) {
  .person { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); }
  .person--lead .person__photo { grid-column: 1 / span 6; align-self: start; }
  .person--lead .person__text { grid-column: 7 / span 6; }
  .person--board .person__photo { grid-column: 1 / span 4; width: 100%; max-width: none; align-self: start; }
  .person--board .person__text { grid-column: 5 / span 8; }
}
@media (min-width: 1024px) {
  .person--lead .person__photo { grid-column: 1 / span 6; position: sticky; top: calc(var(--header-h) + 32px); }
  .person--lead .person__text { grid-column: 7 / span 6; }
  .person--board .person__photo { grid-column: 2 / span 3; }
  .person--board .person__text { grid-column: 6 / span 6; }
}
.board { margin-top: clamp(80px, 11vw, 150px); }

.contact__line {
  margin-bottom: clamp(16px, 2vw, 24px);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  color: var(--ink);
}
.contact__mail {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 4.4rem);
  line-height: 1.1;
  color: var(--forest);
  word-break: break-word;
}
.contact__place {
  margin-top: 20px;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--sand);
  padding-block: clamp(56px, 7vw, 88px) 32px;
}
.site-footer--after-band { border-top: 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 28px;
  align-items: end;
}
.site-footer__mark { width: 74px; }
.site-footer__line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  line-height: 1.1;
  color: var(--forest);
}
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 16px;
  border-top: 1px solid var(--sand);
  font-size: 0.8125rem;
  color: var(--grey-text);
}
.site-footer__meta a { color: var(--forest); }
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: auto minmax(0, 1fr); column-gap: clamp(32px, 5vw, 72px); }
}

/* ---------- 404 ---------- */

.notfound { min-height: 70svh; }

@media print {
  .site-header, .menu, .site-footer__mark { display: none; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
