.landing-page {
  --green-950: #143f1f;
  --green-900: #194b25;
  --green-800: #245f2c;
  --green-700: #33782f;
  --green-600: #438d38;
  --green-100: #edf4e8;
  --green-050: #f6f8f1;
  --ink: #1f2620;
  --landing-muted: #5e645f;
  --paper: #fffefb;
  --cream: #faf9f1;
  --line: #e7e8df;
  --shadow: 0 18px 42px rgba(41, 57, 39, 0.08);
  --landing-radius-lg: 18px;
  --landing-radius-md: 12px;
  --shell: 1180px;

  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.landing-page * {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.landing-page img {
  display: block;
  max-width: 100%;
}
.landing-page a:not(.button) {
  color: inherit;
  text-decoration: none;
}
.landing-page a.button {
  text-decoration: none;
}

.landing-page button,
.landing-page a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}
.section-pad-sm {
  padding: 52px 0 32px;
}
.section-tight {
  padding: 26px 0 56px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 254, 251, 0.94);
}
.header-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--green-950);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  font-size: 28px;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 43px;
  font-size: 15px;
  font-weight: 500;
}
.primary-nav a,
.footer-nav a {
  transition: color 0.18s ease;
}
.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--green-700);
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid var(--green-700);
  border-radius: 8px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #4d983f 0%, #34782d 100%);
  border-color: #34782d;
  box-shadow: 0 8px 18px rgba(55, 119, 47, 0.16);
}
.button-primary:hover {
  box-shadow: 0 10px 22px rgba(55, 119, 47, 0.24);
}
.button-quiet {
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-950);
}
.button-large {
  min-height: 58px;
  padding-inline: 20px;
}
.button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* Size of the sprout icon inside the "Start Swapping" buttons.
   Negative margins let the larger icon bleed into the button padding so it
   doesn't widen the button and force the hero button row to wrap. */
.button .button-sprout {
  width: 34px;
  height: 34px;
  margin-inline: -10px -4px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (min-width: 521px) {
  .button-row {
    flex-wrap: nowrap;
  }
  .button-row > .button {
    min-width: 0;
  }
}
.button-row-centred {
  justify-content: center;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 55px;
  padding-bottom: 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 16px;
  min-height: 545px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 44px;
}
.eyebrow {
  display: none;
  margin: 0 0 12px;
  color: var(--green-700);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.landing-page h1,
.landing-page h2,
.landing-page h3 {
  margin-top: 0;
}
.landing-page h1 {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--green-950);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 1.11;
  letter-spacing: -0.035em;
}

.hero-lede {
  max-width: 430px;
  margin: 0 0 34px;
  color: #4c534d;
  font-size: 20px;
  line-height: 1.65;
}
.hero-media {
  position: relative;
  z-index: 2;
}
.hero-media img {
  width: 100%;
  min-width: 650px;
  margin-left: -18px;
}
.hero-botanical {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.hero-botanical.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.hero-botanical-left {
  width: 135px;
  left: -7px;
  bottom: 65px;
}
.hero-botanical-right {
  width: 148px;
  right: -8px;
  top: 156px;
}

.trust-panel {
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--landing-radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 28px rgba(39, 58, 38, 0.025);
  padding: 46px 28px;
}
.trust-item {
  padding: 0 31px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 0;
}
.icon-disc {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--green-100);
}
.icon-disc img {
  width: 37px;
  height: 37px;
}
.trust-item h2 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: 21px;
  line-height: 1.35;
}
.trust-item p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.65;
}

.stat-panel {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--landing-radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 28px rgba(39, 58, 38, 0.025);
  padding: 30px 28px;
}
.stat-item {
  padding: 4px 31px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat-item:last-child {
  border-right: 0;
}
.stat-value {
  display: block;
  margin-bottom: 4px;
  color: var(--green-800);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.5;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}
.section-heading h2,
.feature-copy h2,
.cta-copy h2 {
  color: var(--green-950);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
}
.section-heading h2 {
  margin-bottom: 0;
  font-size: 39px;
}
.sprout-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 8px;
}
.sprout-divider span {
  width: 16px;
  height: 1px;
  background: var(--green-600);
}
.sprout-divider img {
  width: 26px;
  height: 26px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
}
.step-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--landing-radius-md);
  background: #fff;
}
.step-number {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
  font-weight: 700;
}
.step-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 25px;
}
.step-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}
.step-card p {
  max-width: 210px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 16px;
}
.step-arrow {
  color: var(--green-700);
  font-family: Georgia, serif;
  font-size: 45px;
  text-align: center;
}

.feature-panel {
  min-height: 340px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--landing-radius-lg);
  padding: 28px 68px;
  background: linear-gradient(100deg, rgba(251, 251, 246, 0.96), rgba(255, 255, 255, 0.96));
}
.feature-art img {
  width: min(100%, 365px);
  margin-inline: auto;
}
.feature-copy {
  padding-left: 36px;
}
.feature-copy h2 {
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1.2;
}
.feature-copy > p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #505651;
  font-size: 17px;
}
.check-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4e554f;
}
.check-list img {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.cta-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: var(--landing-radius-lg);
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 224, 190, 0.5), transparent 31%),
    radial-gradient(circle at 83% 26%, rgba(221, 228, 201, 0.5), transparent 30%), #f9f8ee;
  padding: 46px 260px;
}
.cta-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-copy h2 {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.25;
}
.cta-copy p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: #4f554f;
  font-size: 18px;
}
.cta-art {
  position: absolute;
  bottom: 0;
  max-height: 88%;
  object-fit: contain;
}
.cta-art-left {
  left: 18px;
  width: 245px;
}
.cta-art-right {
  right: 18px;
  width: 250px;
}

.site-footer {
  padding: 12px 0 38px;
}
.footer-inner {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand-small {
  font-size: 21px;
}
.brand-small img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-brand-wrap p {
  margin: 4px 0 0 40px;
  color: var(--landing-muted);
  font-size: 12px;
}
.footer-nav {
  display: flex;
  gap: 55px;
  font-size: 14px;
}
.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.social-links img {
  width: 31px;
  height: 31px;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .primary-nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .nav-toggle {
    width: 45px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  .nav-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--green-950);
  }
  .site-header.menu-open .primary-nav {
    position: absolute;
    top: 91px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .primary-nav a {
    padding: 13px 15px;
  }
  .hero-grid {
    grid-template-columns: 44% 56%;
    gap: 24px;
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero-media {
    overflow: visible;
  }
  .hero-media img {
    min-width: 0;
    width: 100%;
    max-width: 640px;
    margin-left: 0;
  }

  .trust-item {
    padding-inline: 20px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .step-arrow {
    display: none;
  }
  .feature-panel {
    padding: 34px 40px;
  }
  .cta-panel {
    padding-inline: 200px;
  }
  .hero-botanical {
    opacity: 0.52;
    z-index: 0;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }
  .section-pad {
    padding: 62px 0;
  }
  .section-tight {
    padding: 18px 0 42px;
  }
  .header-inner {
    min-height: 86px;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .site-header.menu-open .primary-nav {
    top: 76px;
    left: 17px;
    right: 17px;
  }
  .hero {
    padding-top: 30px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow {
    display: block;
  }
  h1 {
    margin-inline: auto;
    font-size: clamp(48px, 14vw, 68px);
  }
  .hero-lede {
    margin-inline: auto;
    font-size: 18px;
  }
  .button-row {
    justify-content: center;
  }
  .hero-media img {
    min-width: 0;
    width: min(100%, 650px);
    margin: 0 auto;
  }
  .hero-botanical {
    opacity: 0.52;
  }
  .hero-botanical-left {
    width: 95px;
    bottom: 250px;
  }
  .hero-botanical-right {
    width: 96px;
    top: 500px;
  }
  .trust-panel {
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
    padding: 18px;
  }
  .stat-panel {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 18px;
  }
  .stat-item {
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .stat-item:nth-child(n + 3) {
    border-bottom: 0;
  }
  .stat-item:last-child {
    border-bottom: 0;
  }
  .trust-item {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .trust-item:nth-child(n + 3) {
    border-bottom: 0;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    min-height: 315px;
  }
  .feature-panel {
    grid-template-columns: 1fr;
    padding: 34px 28px 40px;
  }
  .feature-copy {
    padding: 22px 0 0;
    text-align: center;
  }
  .check-list {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
  .cta-panel {
    min-height: 510px;
    align-items: start;
    padding: 54px 25px 185px;
  }
  .cta-art-left {
    width: 185px;
    left: -2px;
  }
  .cta-art-right {
    width: 185px;
    right: -2px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 24px;
  }
  .footer-brand-wrap p {
    margin-left: 0;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .button-row {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .trust-panel {
    grid-template-columns: 1fr;
  }
  .stat-panel {
    grid-template-columns: 1fr !important;
  }
  .stat-item,
  .stat-item:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-item:last-child {
    border-bottom: 0;
  }
  .trust-item,
  .trust-item:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .cta-copy h2 {
    font-size: 31px;
  }
  .cta-art-left,
  .cta-art-right {
    width: 155px;
  }
}

/* ---------------------------------------------------------------------------
   Growing Guide promo (landing). Two-column feature section: copy + postcode
   form on the left, a sowing-strip preview on the right. Uses landing tokens
   only — brand CTA is always `.button .button-primary`.
   ------------------------------------------------------------------------ */
.guide-promo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--landing-radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 28px rgba(39, 58, 38, 0.025);
}
.guide-promo-eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.landing-page .guide-promo h2 {
  margin: 0 0 14px;
  color: var(--green-950);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.guide-promo-lede {
  max-width: 46ch;
  margin: 0 0 20px;
  color: #4c534d;
  font-size: 17px;
  line-height: 1.6;
}
.guide-promo-points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.guide-promo-points li {
  position: relative;
  padding-left: 26px;
  color: #4c534d;
  font-size: 15px;
}
.guide-promo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-100);
  border: 2px solid var(--green-700);
}
.guide-promo-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.guide-promo-input {
  min-height: 50px;
  width: 150px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-950);
  font-size: 17px;
  letter-spacing: 0.06em;
}
.guide-promo-input:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
}
.guide-promo-form .button {
  min-height: 50px;
  padding-inline: 22px;
}
.guide-promo-note {
  margin: 0 0 18px;
  color: #6b726c;
  font-size: 13.5px;
}
.guide-promo-note[role="alert"] {
  color: #a2381f;
  font-weight: 600;
}
.landing-page a.guide-promo-link {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: none;
}
.landing-page a.guide-promo-link:hover {
  text-decoration: underline;
}

.guide-promo-preview {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--landing-radius-lg);
  background: var(--paper, #fffefb);
  box-shadow: 0 10px 26px rgba(39, 58, 38, 0.06);
}
.guide-promo-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--green-950);
  font-weight: 700;
  font-size: 14px;
}
.guide-promo-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.guide-promo-months {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 6px;
  color: #8b918b;
  font-size: 10px;
}
.guide-promo-months > div {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  text-align: center;
}
.guide-promo-months .is-now {
  color: var(--green-700);
  font-weight: 700;
}
.guide-promo-lane {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.guide-promo-lane-name {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 600;
}
.guide-promo-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.guide-promo-cell {
  height: 16px;
  border-radius: 3px;
  background: #eef0ea;
}
i.guide-promo-cell {
  display: inline-block;
  width: 16px;
  vertical-align: -3px;
  margin-right: 5px;
}
.guide-promo-cell.is-sow {
  background: linear-gradient(180deg, #4d983f 0%, #34782d 100%);
}
.guide-promo-cell.is-raise {
  background: repeating-linear-gradient(
    45deg,
    #a8cfa0,
    #a8cfa0 3px,
    #edf4ea 3px,
    #edf4ea 6px
  );
}
.guide-promo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #6b726c;
  font-size: 12px;
}

@media (max-width: 980px) {
  .guide-promo {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
  }
  .guide-promo-lede {
    max-width: none;
  }
  .guide-promo-input {
    flex: 1 1 130px;
    width: auto;
  }
  .guide-promo-form .button {
    flex: 1 1 auto;
    justify-content: center;
  }
}
