:root {
  --forest-950: #0c281c;
  --forest-900: #123524;
  --forest-800: #173d2b;
  --forest-700: #215039;
  --forest-600: #2d674a;
  --lime: #cbdf4b;
  --lime-bright: #deee63;
  --cream: #f6f0e1;
  --paper: #fbf8ef;
  --sand: #e8dfcc;
  --orange: #e47346;
  --ink: #173526;
  --muted: #6e7b70;
  --white: #ffffff;
  --line: rgba(23, 61, 43, 0.16);
  --serif: Iowan Old Style, Baskerville, Georgia, Times, serif;
  --sans: Avenir Next, Avenir, Inter, Helvetica Neue, Helvetica, Arial, sans-serif;
  --shell: min(1190px, calc(100vw - 64px));
  --header-height: 88px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  color: var(--forest-950);
  background: var(--lime);
  border-radius: 6px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--cream);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    height 240ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  color: var(--forest-900);
  background: rgba(251, 248, 239, 0.94);
  box-shadow: 0 1px 0 rgba(23, 61, 43, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--lime);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-copy small {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.72;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  position: relative;
  padding-block: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.84;
  transition: opacity 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  opacity: 1;
}

.nav-link:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 14px;
  color: var(--forest-950);
  background: var(--lime);
  border-radius: 3px;
  opacity: 1;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--lime-bright);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-cta {
  color: var(--cream);
  background: var(--forest-800);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 3px;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: max(700px, 100svh);
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
  background: var(--forest-950);
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-zoom 12s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 25, 15, 0.83) 0%, rgba(8, 30, 18, 0.63) 37%, rgba(13, 30, 18, 0.18) 67%, rgba(13, 30, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 22, 14, 0.67) 0%, transparent 38%);
}

.hero-grain {
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  padding-top: calc(var(--header-height) + 92px);
  padding-bottom: 38px;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 270px);
  grid-template-rows: 1fr auto;
  gap: 36px;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  padding-bottom: 35px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--forest-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--lime);
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(203, 223, 75, 0.65);
  animation: pulse 2s infinite;
}

h1,
h2,
h3 {
  color: inherit;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 710px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.6vw, 98px);
  line-height: 0.96;
}

h1 em,
h2 em,
.statement em {
  color: var(--lime);
  font-style: italic;
}

.hero-description {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(246, 240, 225, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 15px 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button span {
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--forest-950);
  background: var(--lime);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--lime-bright);
}

.button-dark {
  color: var(--cream);
  background: var(--forest-800);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--forest-950);
}

.button-full {
  width: 100%;
  margin-top: 5px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  color: var(--forest-800);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease;
}

.text-link span {
  font-size: 16px;
  line-height: 0.8;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(3px);
}

.text-link-light {
  color: var(--cream);
}

.hero-note {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 255px;
  padding: 23px 0 20px 23px;
  border-left: 1px solid rgba(246, 240, 225, 0.45);
}

.note-index,
.note-label {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-note p {
  margin: 17px 0 19px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.23;
  letter-spacing: -0.025em;
}

.hero-note p strong {
  color: var(--lime);
  font-weight: 400;
}

.note-line {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 14px;
  background: rgba(246, 240, 225, 0.25);
}

.hero-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-end;
  gap: 45px;
}

.hero-stat {
  display: grid;
  gap: 5px;
  max-width: 180px;
}

.hero-stat strong {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat span {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(246, 240, 225, 0.75);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: rgba(246, 240, 225, 0.87);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--forest-950);
  background: var(--lime);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
  transition: transform 180ms ease;
}

.scroll-cue:hover i,
.scroll-cue:focus-visible i {
  transform: translateY(3px);
}

.section-space {
  padding-block: clamp(92px, 11vw, 156px);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.76fr;
  gap: min(11vw, 145px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 0.98;
}

h2 em {
  color: var(--forest-600);
}

.intro-body {
  align-self: end;
  padding-bottom: 4px;
}

.lead {
  margin-bottom: 20px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.intro-body > p:not(.lead) {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.principles {
  padding-bottom: clamp(90px, 10vw, 135px);
  background: var(--paper);
}

.principles-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(43px, 5.5vw, 75px) clamp(28px, 5.5vw, 78px) 26px;
  color: var(--cream);
  background: var(--forest-800);
}

.principles-frame::before,
.principles-frame::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(203, 223, 75, 0.23);
  border-radius: 50%;
}

.principles-frame::before {
  top: -260px;
  right: -150px;
  width: 530px;
  height: 530px;
}

.principles-frame::after {
  top: -133px;
  right: -22px;
  width: 275px;
  height: 275px;
}

.principles-frame .eyebrow,
.principle-list,
.principles-foot {
  position: relative;
  z-index: 1;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 51px;
  border-top: 1px solid rgba(246, 240, 225, 0.28);
}

.principle {
  min-height: 250px;
  padding: 25px 33px 20px 0;
}

.principle + .principle {
  padding-left: 33px;
  border-left: 1px solid rgba(246, 240, 225, 0.28);
}

.principle-number {
  display: inline-block;
  margin-bottom: 41px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.principle h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.principle p {
  max-width: 245px;
  margin-bottom: 0;
  color: rgba(246, 240, 225, 0.71);
  font-size: 13px;
  line-height: 1.65;
}

.principles-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 240, 225, 0.28);
  color: rgba(246, 240, 225, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-top-copy {
  align-self: end;
  max-width: 330px;
}

.section-top-copy p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.demo-tag {
  display: inline-flex;
  padding: 7px 9px;
  color: var(--forest-700);
  background: rgba(203, 223, 75, 0.34);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.solution-card {
  display: flex;
  min-height: 385px;
  padding: 23px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.solution-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 16px 27px rgba(21, 43, 30, 0.15);
}

.solution-card-lime {
  color: var(--forest-950);
  background: var(--lime);
}

.solution-card-cream {
  color: var(--forest-900);
  background: var(--sand);
}

.solution-card-orange {
  color: var(--forest-950);
  background: var(--orange);
}

.solution-card-forest {
  color: var(--cream);
  background: var(--forest-800);
}

.solution-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-icon {
  width: 61px;
  height: 61px;
}

.solution-card h3 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.solution-card p {
  margin-bottom: 21px;
  font-size: 12.5px;
  line-height: 1.63;
  opacity: 0.78;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
  padding-top: 13px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
}

.card-link span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.card-link:hover span,
.card-link:focus-visible span {
  transform: translate(3px, -3px);
}

.crop-rail {
  overflow: hidden;
  color: var(--forest-900);
  background: var(--sand);
}

.crop-rail-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 126px;
}

.crop-rail .eyebrow {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.crop-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 22px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.crop-list i {
  color: var(--forest-600);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: min(12vw, 160px);
}

.process-sticky {
  align-self: start;
  position: sticky;
  top: 116px;
}

.process-sticky h2 {
  margin-bottom: 27px;
}

.process-sticky > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 37px 0 39px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--forest-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.step-label {
  margin-bottom: 9px;
  color: var(--forest-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-step h3 {
  max-width: 430px;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.process-step div > p:last-child {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.statement {
  overflow: hidden;
  color: var(--cream);
  background: var(--forest-700);
}

.statement-inner {
  position: relative;
  display: grid;
  min-height: 380px;
  padding: 75px 16.5% 57px;
  place-content: center;
  text-align: center;
}

.statement-inner p {
  position: relative;
  z-index: 1;
  max-width: 810px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.statement-inner > span {
  position: relative;
  z-index: 1;
  color: rgba(246, 240, 225, 0.66);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.statement-leaf {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 260px;
  height: 260px;
  color: var(--lime);
  opacity: 0.16;
  transform: translateY(-50%) rotate(-11deg);
}

.contact {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest-800);
}

.contact-content {
  display: flex;
  min-height: 630px;
  padding: clamp(38px, 5.5vw, 76px);
  flex-direction: column;
}

.contact-content h2 {
  margin-bottom: 23px;
  font-size: clamp(55px, 5.8vw, 80px);
}

.contact-content h2 em {
  color: var(--lime);
}

.contact-content > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: auto;
  color: rgba(246, 240, 225, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  gap: 54px;
  margin-top: 55px;
}

.contact-details div {
  display: grid;
  gap: 7px;
}

.contact-details span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.enquiry-form {
  align-self: stretch;
  padding: clamp(30px, 4.5vw, 58px);
  color: var(--forest-900);
  background: var(--sand);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 61, 43, 0.22);
}

.form-heading span {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.form-heading small {
  max-width: 105px;
  color: var(--forest-600);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  margin-top: 21px;
}

.enquiry-form label > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 11px 0;
  color: var(--forest-950);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 61, 43, 0.35);
  border-radius: 0;
  outline: none;
  font-size: 13px;
  line-height: 1.35;
  transition: border-color 160ms ease;
}

.enquiry-form textarea {
  min-height: 73px;
  resize: vertical;
}

.enquiry-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest-800) 50%), linear-gradient(135deg, var(--forest-800) 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% + 1px), calc(100% - 7px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(23, 61, 43, 0.52);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-bottom-color: var(--forest-800);
}

.enquiry-form input:user-invalid,
.enquiry-form select:user-invalid,
.enquiry-form textarea:user-invalid {
  border-bottom-color: #a34024;
}

.form-status {
  min-height: 19px;
  margin: 14px 0 0;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  padding: 48px 0 26px;
  color: var(--cream);
  background: var(--forest-950);
}

.brand-footer .brand-mark {
  color: var(--lime);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 42px;
}

.footer-top > p {
  justify-self: center;
  margin: 0;
  color: rgba(246, 240, 225, 0.72);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.footer-top-link {
  padding-bottom: 3px;
  color: var(--lime);
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
}

.footer-top-link span {
  padding-left: 4px;
  font-size: 15px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 30px;
  padding-top: 19px;
  border-top: 1px solid rgba(246, 240, 225, 0.17);
}

.footer-bottom p {
  margin: 0;
  color: rgba(246, 240, 225, 0.48);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-safety {
  text-align: center;
}

.footer-bottom a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 160ms;
}

.reveal:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(203, 223, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(203, 223, 75, 0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1000px) {
  .primary-navigation {
    gap: 17px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card {
    min-height: 310px;
  }

  .crop-rail-inner {
    gap: 35px;
  }

  .crop-list {
    overflow: hidden;
  }

  .crop-list span:last-child,
  .crop-list i:nth-last-of-type(1) {
    display: none;
  }

  .contact-card {
    grid-template-columns: 1fr 0.82fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 40px, 620px);
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .site-header.is-scrolled {
    background: rgba(251, 248, 239, 0.96);
  }

  .menu-toggle {
    z-index: 22;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: grid;
    padding: 106px 10vw 52px;
    place-content: center start;
    gap: 23px;
    color: var(--forest-900);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: max-content;
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .nav-cta {
    margin-top: 11px;
    padding: 13px 17px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 25, 15, 0.83) 0%, rgba(8, 30, 18, 0.6) 100%),
      linear-gradient(0deg, rgba(5, 22, 14, 0.75) 0%, transparent 45%);
  }

  .hero-layout {
    display: flex;
    min-height: inherit;
    padding-top: 132px;
    padding-bottom: 26px;
    flex-direction: column;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-description {
    max-width: 465px;
    font-size: 14px;
  }

  .hero-note {
    display: none;
  }

  .hero-bottom {
    display: grid;
    width: 100%;
    margin-top: auto;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }

  .hero-stat {
    max-width: 100%;
  }

  .scroll-cue {
    grid-column: 1 / -1;
    margin-top: 8px;
    margin-left: 0;
  }

  .intro-grid,
  .process-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-top {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
  }

  .section-top-copy {
    max-width: 430px;
  }

  .principle-list {
    display: block;
    margin-top: 28px;
  }

  .principle {
    min-height: 0;
    padding: 23px 0 29px;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid rgba(246, 240, 225, 0.28);
    border-left: 0;
  }

  .principle-number {
    margin-bottom: 18px;
  }

  .principle h3 {
    font-size: 29px;
  }

  .principles-foot {
    gap: 18px;
    font-size: 8px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 290px;
  }

  .crop-rail-inner {
    display: block;
    padding: 26px 0 30px;
  }

  .crop-rail .eyebrow {
    margin-bottom: 16px;
  }

  .crop-list {
    justify-content: flex-start;
    gap: 15px;
    font-size: 26px;
  }

  .crop-list span:nth-last-child(-n + 4),
  .crop-list i:nth-last-of-type(-n + 2) {
    display: none;
  }

  .process-sticky {
    position: static;
  }

  .process-step {
    grid-template-columns: 43px 1fr;
    gap: 12px;
  }

  .statement-inner {
    min-height: 315px;
    padding: 65px 22px 45px;
  }

  .statement-leaf {
    right: -74px;
    width: 225px;
    height: 225px;
  }

  .contact-content {
    min-height: 0;
    padding: 43px 31px 35px;
  }

  .contact-content > p:not(.eyebrow) {
    margin-bottom: 35px;
  }

  .contact-details {
    margin-top: 0;
  }

  .enquiry-form {
    padding: 32px 31px 37px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 30px;
  }

  .footer-top > p {
    display: none;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 9px;
  }

  .footer-safety {
    text-align: left;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  h1 {
    font-size: 51px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
    gap: 17px;
    justify-items: start;
  }

  .hero-bottom {
    gap: 13px;
  }

  .contact-details {
    display: grid;
    gap: 20px;
  }

  .form-heading {
    display: grid;
    gap: 7px;
  }

  .form-heading small {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
