@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap";
:root {
  color-scheme: light;
  font-family:
    Manrope,
    Segoe UI,
    sans-serif;
  color: #10170d;
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --paper: #fff;
  --mist: #f3f8ea;
  --mist-strong: #edf6e4;
  --lime: #95c83f;
  --lime-deep: #76aa25;
  --forest: #173f0a;
  --forest-deep: #0b2604;
  --ink: #10170d;
  --muted: #5e6858;
  --shadow: 0 28px 70px rgba(25, 58, 15, 0.12);
  --header-line: rgba(118, 170, 37, 0.3);
  --page: min(1180px, calc(100% - 56px));
  --heading-font: Manrope, "Segoe UI", sans-serif;
  --heading-ink: var(--ink);
  --heading-accent-gradient: linear-gradient(
    90deg,
    var(--forest) 0 34%,
    var(--lime-deep) 34% 100%
  );
  --section-space-tight: 28px;
  --section-space-compact: 32px;
  --section-space-base: 36px;
  --section-space-standard: clamp(40px, 2.87vw, 48px);
  --section-space-relaxed: clamp(44px, 3.11vw, 52px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.page-shell {
  position: relative;
  overflow: clip;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(clamp(108px, 11.11vw, 160px) - 1px),
      rgba(23, 63, 10, 0.075) calc(clamp(108px, 11.11vw, 160px) - 1px),
      rgba(23, 63, 10, 0.075) clamp(108px, 11.11vw, 160px)
    ),
    #fff;
  background-position: center top;
}
.section-grid {
  position: relative;
}
.site-header {
  position: absolute;
  inset: 8px 0 auto;
  z-index: 30;
  height: 112px;
  padding: 20px 0;
}
.site-header__inner {
  position: relative;
  width: min(1320px, calc(100% - 24px));
  height: 100%;
  padding: 0 10px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  isolation: isolate;
  border: 0;
  overflow: visible;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header__inner::before {
  content: "";
  position: absolute;
  inset: -21px -0.9% -18px;
  z-index: 2;
  pointer-events: none;
  background: url("./assets/header-vine-border-transparent.png") center / 100%
    100% no-repeat;
  opacity: 0.78;
  filter: drop-shadow(0 2px 3px rgba(23, 63, 10, 0.08));
}
.site-header__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(118, 170, 37, 0.16);
  border-radius: inherit;
}
.site-header__inner > * {
  position: relative;
  z-index: 3;
}
.header-brand {
  --brand-frame-width: 216px;
  --brand-frame-height: 60px;
  --brand-logo-width: 156px;
  --brand-logo-shift-x: 22px;
  grid-column: 1;
  justify-self: start;
  position: relative;
  width: var(--brand-frame-width);
  height: var(--brand-frame-height);
  display: inline-flex;
  align-items: center;
  overflow: visible;
  border-right: 0;
  line-height: 0;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.24s ease;
}
.header-brand img {
  width: var(--brand-logo-width);
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translate(var(--brand-logo-shift-x), 0);
  pointer-events: none;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
}
.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--lime-deep);
  transform: rotate(-18deg);
}
.brand strong {
  display: block;
  font-family:
    Georgia,
    Times New Roman,
    serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}
.brand small {
  display: block;
  margin-top: 5px;
  font-size: 7px;
  line-height: 1;
  letter-spacing: 0.43em;
}
.brand--inverse {
  color: #fff;
}
.brand--inverse .brand__mark {
  color: var(--lime);
}
.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 1.7vw, 24px);
  width: max-content;
  transform: translateX(-45px);
}
.site-nav__link {
  position: relative;
  z-index: 0;
  min-height: 46px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: #4d5749;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__link:after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__link:before {
  content: "";
  position: absolute;
  inset: 4px -4px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--header-line) 72%, transparent);
  border-radius: 999px;
  background: rgba(237, 247, 218, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 5px 14px rgba(118, 170, 37, 0.08);
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__link:focus-visible:after,
.site-nav__link.is-active:after {
  transform: scaleX(1);
}
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--lime-deep);
}
.site-nav__link.is-active {
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}
.site-nav__link.is-active:before {
  inset: 4px -5px 4px -17px;
  opacity: 1;
  transform: scale(1);
}
.site-nav__link.is-active:after {
  display: none;
}
.site-nav__leaf {
  position: absolute;
  left: -12px;
  top: 50%;
  color: var(--lime-deep);
  transform: translateY(-50%) rotate(-14deg);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  animation: site-nav-leaf-in 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes site-nav-leaf-in {
  from {
    opacity: 0;
    transform: translateY(-50%) rotate(-28deg) scale(0.68);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) rotate(-14deg) scale(1);
  }
}
.site-nav__link:focus-visible {
  background: rgba(149, 200, 63, 0.12);
}
.mobile-header-tools {
  display: none;
}
.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.header-search {
  width: clamp(140px, 10.8vw, 154px);
}
.header-search__field {
  width: 100%;
  height: 46px;
  padding-left: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--header-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.header-search__field:focus-within {
  border-color: var(--lime-deep);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(149, 200, 63, 0.16);
}
.header-search input {
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12.5px;
  line-height: 1;
}
.header-search input::placeholder {
  color: #687362;
}
.header-search input::-webkit-search-cancel-button {
  cursor: pointer;
}
.header-search button,
.account-button,
.cart-button,
.menu-button {
  position: relative;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header-search button {
  width: 40px;
  height: 44px;
  color: var(--forest);
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}
.header-search button:focus-visible {
  color: var(--lime-deep);
  border-radius: 50%;
  background: rgba(149, 200, 63, 0.14);
  transform: scale(1.06);
}
.account-button {
  width: auto;
  min-width: max-content;
  height: 46px;
  gap: 5px;
  padding: 0 2px;
  border-radius: 999px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.account-button:focus-visible {
  color: var(--lime-deep);
  background: rgba(149, 200, 63, 0.14);
}
.cart-button,
.menu-button {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--forest);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-button:focus-visible,
.menu-button:focus-visible {
  color: var(--lime-deep);
  background: rgba(149, 200, 63, 0.14);
  transform: translateY(-1px);
}
.site-nav__link:active,
.header-search button:active,
.account-button:active,
.cart-button:active,
.menu-button:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.08s;
}
@media (hover: hover) and (pointer: fine) {
  .header-brand:hover {
    filter: saturate(1.08) brightness(1.02);
    transform: none;
  }
  .site-nav__link:hover {
    color: var(--forest);
    background: rgba(149, 200, 63, 0.13);
    transform: translateY(-2px);
  }
  .site-nav__link:hover:after {
    transform: scaleX(1);
  }
  .site-nav__link.is-active:hover .site-nav__leaf {
    transform: translateY(-50%) rotate(-6deg) scale(1.08);
  }
  .header-search__field:hover {
    border-color: rgba(118, 170, 37, 0.72);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(149, 200, 63, 0.08);
  }
  .header-search button:hover {
    color: var(--lime-deep);
    background: rgba(149, 200, 63, 0.14);
    transform: scale(1.08) rotate(-5deg);
  }
  .account-button:hover {
    color: var(--forest);
    background: rgba(149, 200, 63, 0.14);
    transform: translateY(-2px);
  }
  .cart-button:hover,
  .menu-button:hover {
    color: var(--lime-deep);
    background: rgba(149, 200, 63, 0.14);
    transform: translateY(-2px) scale(1.04);
  }
}
.cart-button span {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--forest);
  font-size: 8px;
  font-weight: 800;
}
.cart-button .cart-button__dot {
  top: 5px;
  right: 4px;
  min-width: 8px;
  width: 8px;
  height: 8px;
  padding: 0;
  background: var(--lime-deep);
  box-shadow: 0 0 0 2px rgba(255, 255, 252, 0.96);
}
@media (min-width: 1261px) {
  html {
    scroll-padding-top: 108px;
  }
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    transform: translateY(8px);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-header--scrolled {
    height: 92px;
    padding: 0;
    transform: translateY(0);
    transition: none;
  }
  .site-header--scrolled .site-header__inner {
    background: transparent;
    overflow: hidden;
  }
  .site-header--scrolled .site-header__inner::after {
    inset: 11px 0;
    border: 0;
    border-radius: 999px;
    background: #f3f8ea;
  }
  .site-header__inner::before {
    transition: opacity 0.18s ease-out;
  }
  .site-header--scrolled .site-header__inner::before {
    inset: -12px 0 -8px;
    opacity: 0.7;
  }
  .header-brand::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    bottom: 14px;
    width: 1px;
    border-radius: 999px;
    background: var(--header-line);
  }
  .account-button--desktop::before,
  .cart-button::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--header-line);
  }
}
.menu-button {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero {
  position: relative;
  height: 760px;
  overflow: hidden;
  background: #f3f8eaed;
}
.hero__copy {
  position: relative;
  z-index: 3;
  width: min(960px, calc(100% - 56px));
  margin: 0 auto;
  padding-top: 165px;
  text-align: center;
}
.hero h1 {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(54px, 5.15vw, 74px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.hero h1 span {
  font-weight: 800;
  background: var(--heading-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__side-note {
  position: absolute;
  z-index: 5;
  top: 278px;
  right: max(26px, calc((100vw - 1280px) / 2));
  width: 210px;
  margin: 0;
  color: #4f5b49;
  font-size: 10px;
  line-height: 1.55;
  transform: rotate(90deg) translate(100%);
  transform-origin: top right;
}
.hero__arch {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 72px));
  height: 310px;
  border-radius: 590px 590px 0 0;
  background: var(--lime);
  transform: translate(-50%);
}
.hero__plant-wrap {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 66px;
  width: 500px;
  height: 405px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: translate(-50%);
}
.hero__plant {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 32px 28px rgba(24, 55, 12, 0.22));
  transition:
    opacity 0.22s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero__plant-wrap:hover .hero__plant {
  transform: translateY(-6px) scale(1.015);
}
.button {
  min-height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}
.button--light {
  color: var(--lime-deep);
  background: #fff;
  box-shadow: 0 14px 35px #1336082e;
}
.button--green {
  color: #fff;
  background: var(--lime-deep);
  box-shadow: 0 12px 24px #6a9c2033;
}
.button--green:hover,
.button--green:focus-visible {
  background: var(--forest);
}
.hero__cta {
  position: absolute;
  left: 50%;
  bottom: 64px;
  z-index: 6;
  transform: translate(-50%);
}
.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translate(-50%, -2px);
}
.hero__rail {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 72px));
  height: 70px;
  padding: 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 70px 70px 0 0;
  color: #fff;
  background: var(--forest);
  transform: translate(-50%);
}
.rail-number {
  font-size: 10px;
  font-weight: 700;
}
.rail-line {
  position: relative;
  width: 95px;
  height: 1px;
  overflow: hidden;
  background: #ffffff47;
}
.rail-line i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--lime);
  transition: width 0.26s ease;
}
.round-button {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 63, 10, 0.18);
  border-radius: 50%;
  color: var(--forest);
  background: #fff;
  cursor: pointer;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.round-button:hover,
.round-button:focus-visible {
  color: #fff;
  border-color: var(--lime-deep);
  background: var(--lime-deep);
  transform: scale(1.06);
}
.round-button--dark {
  color: #fff;
  border-color: #ffffff47;
  background: transparent;
}
.hero__blur {
  position: absolute;
  z-index: 2;
  opacity: 0.7;
  filter: blur(6px);
  pointer-events: none;
}
.hero__blur img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__blur--left {
  left: -145px;
  top: 300px;
  width: 260px;
  height: 250px;
  transform: rotate(62deg);
}
.hero__blur--right {
  right: -105px;
  top: 182px;
  width: 250px;
  height: 230px;
  transform: rotate(-38deg);
}
.hero__orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}
.hero__orbit--one {
  left: 16%;
  top: 342px;
  width: 220px;
  height: 110px;
  transform: rotate(-22deg);
}
.hero__orbit--two {
  right: 14%;
  top: 345px;
  width: 200px;
  height: 116px;
  transform: rotate(22deg);
}
.growth-path {
  --growth-green: #3f7734;
  --growth-dark: #173d25;
  --growth-grid: min(1536px, calc(100% - 64px));
  position: relative;
  z-index: 2;
  min-height: 941px;
  padding: 42px 0 30px;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
.growth-path__vine {
  position: absolute;
  z-index: 0;
  top: -18px;
  left: -8px;
  width: 225px;
  height: 220px;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgba(24, 63, 12, 0.12));
  transform: rotate(13deg);
  transform-origin: left top;
}
.growth-path__vine--right {
  top: -20px;
  right: -8px;
  left: auto;
  width: 255px;
  height: 290px;
  object-fit: fill;
  transform: scaleX(-1);
  transform-origin: center;
}
.growth-path__intro {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}
.growth-path__eyebrow {
  min-height: 22px;
  margin: 0 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--growth-green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.growth-path__eyebrow svg {
  flex: 0 0 auto;
}
.growth-path h2 {
  margin: 0;
  color: var(--growth-dark);
  font-family:
    "Playfair Display",
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(54px, 4.2vw, 70px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.037em;
}
.growth-path h2 span,
.growth-path h2 em {
  display: block;
}
.growth-path h2 em {
  margin-top: 4px;
  color: #4c8136;
  font-weight: 400;
  line-height: 0.94;
}
.growth-path__summary {
  width: min(555px, 100%);
  margin: 22px auto 0;
  color: #353d33;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.005em;
}
.growth-path__grid {
  position: relative;
  z-index: 2;
  width: var(--growth-grid);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 25px;
}
.growth-path__slot {
  min-width: 0;
  padding-top: 13px;
}
.growth-path__slot--featured {
  padding-top: 0;
}
.growth-card {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 63, 10, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 19px 36px rgba(20, 49, 12, 0.11),
    0 3px 8px rgba(20, 49, 12, 0.06);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease;
}
.growth-card--systems {
  transform: rotate(0.72deg);
}
.growth-card--workshops {
  min-height: 594px;
}
.growth-card--supplies {
  transform: rotate(-0.72deg);
}
.growth-card__media {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: 263px;
  flex: 0 0 263px;
  margin: 0;
  overflow: hidden;
}
.growth-card--workshops .growth-card__media {
  height: 307px;
  flex-basis: 307px;
  margin: 7px 16px 0;
  border-radius: 15px;
  background: var(--mist);
}
.growth-card--supplies .growth-card__media {
  height: 270px;
  flex-basis: 270px;
}
.growth-card__image {
  width: 100%;
  height: 100%;
}
.growth-card__image--contain {
  object-fit: contain;
}
.growth-card__image--cover {
  object-fit: cover;
  object-position: center;
}
.growth-card--systems .growth-card__image {
  padding: 58px 26px 2px;
  transform: scale(1.3);
  transform-origin: center 61%;
}
.growth-card--supplies .growth-card__image {
  padding: 42px 35px 0;
  transform: scale(1.27);
  transform-origin: center 57%;
}
.growth-card__icon,
.growth-card__detail-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 119, 52, 0.15);
  border-radius: 50%;
  color: var(--growth-green);
  background: #f7fbf4;
}
.growth-card__icon {
  position: absolute;
  z-index: 3;
  top: 21px;
  left: 22px;
  width: 54px;
  height: 54px;
  box-shadow: 0 8px 20px rgba(23, 63, 10, 0.05);
}
.growth-card--workshops .growth-card__icon {
  top: 17px;
  left: 18px;
}
.growth-card__icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(41%) sepia(19%) saturate(1372%)
    hue-rotate(65deg) brightness(91%) contrast(91%);
}
.growth-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 2px 44px 31px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.growth-card--workshops .growth-card__content {
  padding-top: 22px;
}
.growth-card--supplies .growth-card__content {
  padding-top: 3px;
}
.growth-card__detail-icon {
  width: 44px;
  height: 44px;
  margin: -4px 0 9px;
}
.growth-card h3 {
  margin: 0;
  color: var(--growth-dark);
  font-family:
    "Playfair Display",
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(27px, 2.03vw, 34px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.growth-card h3 span {
  display: block;
}
.growth-card__rule {
  width: 44px;
  height: 2px;
  margin: 16px 0 11px;
  border-radius: 99px;
  background: var(--growth-green);
}
.growth-card__content > p {
  max-width: 390px;
  margin: 0;
  color: #444b41;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.growth-card__cta {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--growth-green);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.growth-card__cta svg {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.growth-card__botanical {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: -20px;
  width: 148px;
  height: 178px;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.28;
}
.growth-card--workshops .growth-card__botanical {
  right: -31px;
  bottom: -38px;
  width: 194px;
  height: 222px;
  opacity: 0.19;
}
.growth-card--supplies .growth-card__botanical {
  right: -25px;
  bottom: auto;
  top: -26px;
  width: 165px;
  transform: rotate(84deg);
  opacity: 0.18;
}
@media (hover: hover) and (pointer: fine) {
  .growth-path__slot:hover .growth-card,
  .growth-path__slot:focus-within .growth-card {
    border-color: rgba(63, 119, 52, 0.23);
    box-shadow:
      0 25px 48px rgba(20, 49, 12, 0.15),
      0 4px 10px rgba(20, 49, 12, 0.07);
  }
  .growth-path__slot:hover .growth-card--systems,
  .growth-path__slot:focus-within .growth-card--systems {
    transform: translateY(-6px) rotate(0.72deg);
  }
  .growth-path__slot:hover .growth-card--workshops,
  .growth-path__slot:focus-within .growth-card--workshops {
    transform: translateY(-6px);
  }
  .growth-path__slot:hover .growth-card--supplies,
  .growth-path__slot:focus-within .growth-card--supplies {
    transform: translateY(-6px) rotate(-0.72deg);
  }
  .growth-card__cta:hover,
  .growth-card__cta:focus-visible {
    color: var(--forest);
    transform: translateY(-1px);
  }
  .growth-card__cta:hover svg,
  .growth-card__cta:focus-visible svg {
    transform: translateX(5px);
  }
}
.story-showcase {
  --story-green: #2f7b4b;
  --story-dark: #0c5738;
  --story-text: #343d49;
  --story-grid: min(
    1556px,
    calc(100% - clamp(40px, 6.94vw, 116px))
  );
  position: relative;
  z-index: 2;
  min-height: 941px;
  padding: 34px 0 25px;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
.story-showcase__blur {
  position: absolute;
  z-index: 1;
  opacity: 0.46;
  filter: blur(8px) saturate(0.72);
  pointer-events: none;
}
.story-showcase__blur img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.story-showcase__blur--left {
  left: -145px;
  top: 300px;
  width: 260px;
  height: 250px;
  transform: rotate(62deg);
}
.story-showcase__blur--right {
  right: -88px;
  top: 225px;
  width: 250px;
  height: 230px;
  transform: rotate(-38deg);
}
.story-showcase__botanical {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
.story-showcase__intro {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}
.story-showcase__eyebrow {
  min-height: 28px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--story-green);
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.story-showcase__eyebrow svg {
  flex: 0 0 auto;
  color: var(--lime);
}
.story-showcase h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 12px auto 0;
  color: var(--story-dark);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(48px, 4.05vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.047em;
}
.story-showcase__title-leaf {
  position: absolute;
  top: -12px;
  right: -22px;
  display: inline-flex;
  color: var(--lime);
  transform: rotate(-17deg);
}
.story-showcase__mascots {
  width: 430px;
  height: 205px;
  margin: 8px auto 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 9px 8px rgba(32, 73, 41, 0.08));
}
.story-showcase__copy {
  margin: 8px auto 0;
  color: var(--story-text);
  font-size: clamp(18px, 1.28vw, 21.5px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.story-showcase__copy p {
  margin: 0;
}
.story-showcase__copy p + p {
  margin-top: 13px;
}
.story-showcase__grid {
  position: relative;
  z-index: 2;
  width: var(--story-grid);
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.story-card {
  position: relative;
  height: 412px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(118, 170, 37, 0.22);
  border-radius: 27px;
  background: var(--mist);
  box-shadow:
    0 14px 30px rgba(23, 63, 10, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease;
}
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(224, 234, 218, 0.99) 0%,
    rgba(224, 234, 218, 0.97) 34%,
    rgba(224, 234, 218, 0.9) 43%,
    rgba(224, 234, 218, 0.58) 52%,
    rgba(224, 234, 218, 0) 67%
  );
}
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(174, 220, 118, 0.24);
}
.story-card--hydrokit::after {
  background: rgba(180, 240, 140, 0.35);
}
.story-card__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.08) contrast(1.02);
}
.story-card--hydrokit .story-card__art {
  filter: brightness(1.08) saturate(0.96) contrast(1.04);
}
.story-card__content {
  position: relative;
  z-index: 2;
  width: 45%;
  height: 100%;
  padding: 37px 0 31px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--forest);
}
.story-card__pill {
  min-height: 36px;
  padding: 0 13px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(118, 170, 37, 0.25);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(250, 253, 247, 0.91);
  box-shadow: 0 4px 11px rgba(23, 63, 10, 0.07);
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
.story-card__pill-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--story-green);
  background: #eef8e9;
}
.story-card__pill-icon img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(37%) sepia(33%) saturate(881%)
    hue-rotate(94deg) brightness(92%) contrast(86%);
}
.story-card h3 {
  margin: 24px 0 0;
  color: var(--forest);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(35px, 2.48vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.story-card h3 span,
.story-card__content > p span {
  display: block;
}
.story-card__rule {
  width: 56px;
  height: 2px;
  margin: 24px 0 19px;
  border-radius: 99px;
  background: rgba(118, 170, 37, 0.72);
}
.story-card__content > p {
  margin: 0;
  color: #36502e;
  font-size: clamp(14px, 1.03vw, 17.5px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
.story-card__cta {
  width: 192px;
  min-height: 56px;
  margin-top: auto;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 11px 22px rgba(23, 63, 10, 0.2);
  font-size: clamp(17px, 1.17vw, 20px);
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.story-card__cta svg {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .story-card:hover,
  .story-card:focus-within {
    border-color: rgba(118, 170, 37, 0.48);
    box-shadow: 0 22px 42px rgba(23, 63, 10, 0.14);
    transform: translateY(-4px);
  }
  .story-card__cta:hover,
  .story-card__cta:focus-visible {
    background: var(--story-green);
    box-shadow: 0 13px 24px rgba(82, 126, 27, 0.24);
    transform: translateY(-1px);
  }
  .story-card__cta:hover svg,
  .story-card__cta:focus-visible svg {
    transform: translateX(5px);
  }
}
@media (max-width: 1260px) {
  .story-showcase {
    min-height: auto;
    padding-bottom: 34px;
  }
  .story-card {
    height: 400px;
  }
  .story-card__content {
    padding: 34px 0 28px 32px;
  }
  .story-card h3 {
    font-size: clamp(34px, 3.2vw, 40px);
  }
  .story-card__cta {
    width: 176px;
    min-height: 52px;
    padding-inline: 22px;
  }
}
@media (max-width: 1050px) {
  .story-showcase__blur {
    display: none;
  }
  .story-showcase__intro {
    width: min(880px, calc(100% - 48px));
  }
  .story-showcase__copy br {
    display: none;
  }
  .story-showcase__grid {
    width: min(900px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .story-card {
    height: 412px;
    border-radius: 23px;
  }
  .story-card__art {
    object-fit: contain;
  }
  .story-card__content {
    width: 45%;
    padding: 37px 0 31px 42px;
  }
  .story-card__pill {
    min-height: 33px;
    font-size: 11px;
  }
  .story-card h3 {
    margin-top: 20px;
    font-size: clamp(31px, 3.4vw, 36px);
  }
  .story-card__rule {
    margin: 20px 0 15px;
  }
  .story-card__content > p {
    font-size: 14px;
  }
  .story-card__cta {
    width: 160px;
    min-height: 49px;
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .story-showcase {
    --story-grid: min(600px, calc(100% - 34px));
    padding: 52px 0 62px;
  }
  .story-showcase__intro {
    width: calc(100% - 42px);
  }
  .story-showcase__eyebrow {
    font-size: 17px;
  }
  .story-showcase h2 {
    width: auto;
    font-size: clamp(39px, 8.2vw, 52px);
  }
  .story-showcase__title-leaf {
    right: -3px;
  }
  .story-showcase__mascots {
    width: min(410px, 86vw);
    height: 205px;
  }
  .story-showcase__copy {
    max-width: 620px;
    font-size: 16.5px;
  }
  .story-showcase__grid {
    margin-top: 31px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .story-card {
    height: 400px;
  }
  .story-card__content {
    width: 47%;
    padding: 31px 0 28px 31px;
  }
}
@media (max-width: 520px) {
  .story-showcase h2 {
    font-size: clamp(35px, 10vw, 45px);
  }
  .story-showcase__mascots {
    height: 182px;
  }
  .story-showcase__copy {
    font-size: 15px;
  }
  .story-card {
    height: 390px;
    border-radius: 21px;
  }
  .story-card__art {
    object-position: 55% center;
  }
  .story-card__content {
    width: 57%;
    padding: 25px 0 22px 22px;
  }
  .story-card__pill {
    min-height: 31px;
    max-width: calc(100% - 4px);
    padding-inline: 7px 9px;
    gap: 5px;
    font-size: 9px;
  }
  .story-card__pill-icon {
    width: 19px;
    height: 19px;
  }
  .story-card h3 {
    margin-top: 18px;
    font-size: clamp(27px, 8vw, 33px);
  }
  .story-card__rule {
    width: 45px;
    margin: 17px 0 13px;
  }
  .story-card__content > p {
    font-size: 12.5px;
    line-height: 1.38;
  }
  .story-card__cta {
    width: 145px;
    min-height: 48px;
    padding-inline: 18px;
    font-size: 15px;
  }
}

@media (max-width: 780px) {
  :is(
    .growth-path h2,
    .story-showcase h2,
    .how-it-works h2,
    .process-video h2,
    .grow-anywhere h2,
    .features-designed h2,
    .growable__intro h2,
    .grow-series-showcase h2,
    .about__copy h2,
    .section-title h2
  ) {
    color: var(--heading-ink);
    font-family: var(--heading-font);
    font-weight: 400;
  }
  :is(
    .growth-path h2,
    .story-showcase h2,
    .how-it-works h2,
    .process-video h2,
    .grow-anywhere h2,
    .features-designed h2,
    .growable__intro h2,
    .grow-series-showcase h2,
    .about__copy h2,
    .section-title h2
  )
    .section-heading__accent {
    color: var(--lime-deep);
    font-style: normal;
    font-weight: 800;
  }
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    :is(
      .growth-path h2,
      .story-showcase h2,
      .how-it-works h2,
      .process-video h2,
      .grow-anywhere h2,
      .features-designed h2,
      .growable__intro h2,
      .grow-series-showcase h2,
      .about__copy h2,
      .section-title h2
    )
      .section-heading__accent {
      background: var(--heading-accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
  }

  .growth-process-flow {
    overflow: visible;
    background: transparent;
  }
  .growth-process-flow > .how-it-works,
  .growth-process-flow > .process-video,
  .growth-process-flow > .how-it-works + .process-video {
    margin: 0;
    background: transparent;
  }
  .how-it-works {
    --how-grid: var(--page);
    min-height: 0;
    padding: var(--mobile-section-space) 0 40px;
  }
  .how-it-works__botanical {
    display: none;
  }
  .how-it-works__intro {
    width: var(--page);
  }
  .how-it-works__mark {
    width: 36px;
    height: 36px;
  }
  .how-it-works__eyebrow {
    margin-top: 10px;
    font-size: 0.75rem;
    line-height: 1.35;
    letter-spacing: 0.14em;
  }
  .how-it-works h2 {
    margin-top: 10px;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.02;
  }
  .how-it-works__summary {
    max-width: 34ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .how-it-works__journey {
    width: var(--page);
    min-height: 0;
    margin: 30px auto 0;
  }
  .how-it-works__connector {
    display: none;
  }
  .how-it-works__steps {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .how-step,
  .how-step--1,
  .how-step--2,
  .how-step--3,
  .how-step--4,
  .how-it-works__journey.is-visible .how-step {
    min-height: 0;
    height: auto;
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .how-step__card {
    min-height: 150px;
    height: auto;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(104px, 36%) minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(16, 58, 34, 0.075);
  }
  .how-step__number,
  .how-it-works__journey.is-visible .how-step__number {
    top: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    box-shadow: 0 5px 14px rgba(9, 63, 34, 0.12);
    opacity: 1;
    transform: none;
  }
  .how-step__number > span {
    width: 36px;
    height: 36px;
    border-width: 1px;
    font-size: 1rem;
  }
  .how-step__media {
    grid-column: 1;
    width: 100%;
    height: 122px;
  }
  .how-step__media > img {
    width: calc(100% + 24px);
    height: 100%;
    transform: none;
  }
  .how-step__leaf-art {
    right: -18px;
    bottom: -18px;
    width: 84px;
    height: 84px;
    opacity: 0.12;
  }
  .how-step__label {
    grid-column: 2;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }
  .how-step__icon {
    width: 46px;
    height: 46px;
    padding: 12px;
  }
  .how-step__label h3 {
    margin-top: 10px;
    font-size: 1.0625rem;
    line-height: 1.25;
  }

  .process-video {
    min-height: 0;
    padding: 40px 0 var(--mobile-section-space);
  }
  .process-video__intro {
    width: var(--page);
  }
  .process-video__eyebrow {
    min-height: 26px;
    font-size: 0.9375rem;
  }
  .process-video__seedling {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .process-video__dots {
    margin-top: 5px;
  }
  .process-video h2 {
    margin-top: 14px;
    font-size: clamp(2.25rem, 9.5vw, 2.85rem);
    line-height: 1.04;
    white-space: normal;
  }
  .process-video__summary {
    max-width: 36ch;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .process-video__media {
    width: var(--page);
    aspect-ratio: 16 / 9;
    margin-top: 26px;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(13, 48, 20, 0.13);
  }
  .process-video__play {
    width: 64px;
    height: 64px;
  }
  .process-video__play > img,
  .process-video__play > svg {
    width: 24px;
    height: 24px;
  }

  .grow-anywhere {
    min-height: 0;
    padding: var(--mobile-section-space) 0;
    overflow: hidden;
  }
  .grow-anywhere__intro {
    width: var(--page);
  }
  .grow-anywhere__mark {
    width: 150px;
    height: 32px;
    grid-template-columns: 1fr 32px 1fr;
    gap: 10px;
  }
  .grow-anywhere h2 {
    margin-top: 8px;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.02;
  }
  .grow-anywhere__intro > p {
    max-width: 37ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .grow-anywhere__grid {
    width: var(--page);
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .grow-anywhere-card {
    height: auto;
    min-height: 0;
    border-radius: var(--mobile-card-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(24, 67, 12, 0.08);
  }
  .grow-anywhere-card::after {
    width: 58px;
    height: 58px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 var(--mobile-card-radius) 0;
  }
  .grow-anywhere-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 10px 10px 0;
    border-radius: 17px;
  }
  .grow-anywhere-card__leaf {
    top: -7px;
    right: 18px;
    width: 92px;
    opacity: 0.7;
  }
  .grow-anywhere-card__body {
    padding: 18px 18px 20px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }
  .grow-anywhere-card__icon {
    width: 52px;
    height: 52px;
  }
  .grow-anywhere-card__icon > img {
    width: 28px;
    height: 28px;
  }
  .grow-anywhere-card h3 {
    margin-top: 2px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .grow-anywhere-card__copy > p {
    min-height: 0;
    margin-top: 7px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .grow-anywhere-card__cta {
    width: 100%;
    height: 48px;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.9375rem;
  }
  .grow-anywhere-card__cta > img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 780px) {
  .features-designed {
    min-height: 0;
    padding: var(--mobile-section-space) 0;
    overflow: hidden;
  }
  .features-designed__intro {
    position: relative;
    inset: auto;
    width: var(--page);
    margin: 0 auto;
  }
  .features-designed__seedling {
    width: 31px;
    height: 26px;
  }
  .features-designed__eyebrow {
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.3;
    letter-spacing: 0.12em;
  }
  .features-designed h2 {
    margin-top: 10px;
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    line-height: 1.03;
  }
  .features-designed h2 > span,
  .features-designed h2 > span:nth-child(2) {
    display: block;
    font-size: inherit;
    line-height: inherit;
  }
  .features-designed h2 em {
    font-style: normal;
  }
  .features-designed__summary {
    max-width: 38ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .features-designed__summary > span {
    display: inline;
  }
  .features-designed__stage {
    position: relative;
    inset: auto;
    width: var(--page);
    height: auto;
    margin: 26px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .features-designed__product {
    order: -1;
    width: 100%;
    min-height: 0;
    margin: 0 0 6px;
    padding: 16px 12px 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: var(--mobile-card-radius);
    background: linear-gradient(180deg, rgba(247, 251, 242, 0.96), rgba(235, 245, 224, 0.82));
  }
  .features-designed__product > img {
    position: relative;
    inset: auto;
    width: min(330px, 84vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
  .features-designed__column,
  .features-designed__column--left,
  .features-designed__column--right {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .features-designed__column--left,
  .features-designed__column--right {
    grid-column: auto;
  }
  .features-designed__item {
    width: 100%;
  }
  .features-designed-card {
    min-height: 112px;
    height: auto;
    padding: 14px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(25, 57, 21, 0.065);
  }
  .features-designed-card__icon {
    width: 58px;
    height: 58px;
  }
  .features-designed-card__icon > img {
    width: 34px;
    height: 34px;
  }
  .features-designed-card h3 {
    font-size: 1.0625rem;
    line-height: 1.25;
  }
  .features-designed-card p {
    margin-top: 6px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .features-designed__benefits {
    position: relative;
    inset: auto;
    width: var(--page);
    min-height: 0;
    margin: 18px auto 0;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: 18px;
    background: rgba(245, 250, 239, 0.94);
  }
  .features-designed__benefits > li,
  .features-designed__benefits > li:nth-child(2),
  .features-designed__benefits > li:nth-child(3) {
    width: 100%;
    min-height: 60px;
    padding: 8px 0;
    gap: 12px;
    border: 0;
    border-top: 1px solid rgba(118, 170, 37, 0.12);
  }
  .features-designed__benefits > li:first-child {
    border-top: 0;
  }
  .features-designed__benefit-icon {
    width: 44px;
    height: 44px;
  }
  .features-designed__benefit-icon > img {
    width: 24px;
    height: 24px;
  }
  .features-designed__benefit-copy {
    font-size: 0.9375rem;
    line-height: 1.4;
    white-space: normal;
  }
  .features-designed__benefit-copy > span {
    display: inline;
  }

  .growable {
    min-height: 0;
    padding: var(--mobile-section-space) 0;
    overflow: hidden;
  }
  .growable::before {
    content: none;
  }
  .growable__intro {
    position: relative;
    inset: auto;
    width: var(--page);
    margin: 0 auto;
  }
  .growable__intro h2 {
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    line-height: 1.04;
  }
  .growable__ornament {
    width: 130px;
    height: 20px;
    margin-top: 10px;
    grid-template-columns: 1fr 20px 1fr;
    gap: 9px;
  }
  .growable__intro > p {
    max-width: 38ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .growable__intro > p > span {
    display: inline;
  }
  .growable__stage {
    position: relative;
    inset: auto;
    width: var(--page);
    height: auto;
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .growable__lifestyle {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
  }
  .growable__photo-tab {
    top: 22px;
    bottom: 22px;
    left: -8px;
    width: 34px;
    border-radius: 18px 0 0 18px;
  }
  .growable__photo {
    border-radius: var(--mobile-card-radius);
  }
  .growable-badge {
    top: 14px;
    left: 14px;
    width: 92px;
    height: 92px;
    box-shadow: 0 9px 22px rgba(34, 68, 20, 0.12);
  }
  .growable-badge > img {
    width: 34px;
    height: 34px;
    margin: 3px 0;
  }
  .growable-badge__top,
  .growable-badge__bottom {
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
  }
  .growable__grid {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .growable__item {
    width: 100%;
  }
  .growable-card {
    width: 100%;
    height: 176px;
    min-height: 176px;
    border-radius: 20px;
    background: rgba(246, 250, 241, 0.96);
    box-shadow: 0 8px 22px rgba(40, 70, 20, 0.045);
  }
  .growable-card__copy {
    position: relative;
    inset: auto;
    z-index: 4;
    max-width: 58%;
    padding: 20px 0 0 20px;
  }
  .growable-card h3 {
    font-size: 1.125rem;
    line-height: 1.25;
  }
  .growable-card__mini-mark {
    width: 40px;
    height: 12px;
    margin-top: 6px;
    grid-template-columns: 23px 12px;
    gap: 5px;
  }
  .growable-card p {
    margin-top: 12px;
    font-size: 0.875rem;
    line-height: 1.45;
  }
  .growable-card p > span {
    display: inline;
  }
  .growable-card__arrow {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
  .growable-card__arrow > img {
    width: 18px;
    height: 18px;
  }
  .growable-card__line-art {
    right: 22px;
    bottom: 6px;
    width: 116px;
    height: 116px;
    opacity: 0.08;
  }
  .growable-card__produce,
  .growable-card__produce--basil,
  .growable-card__produce--tomatoes,
  .growable-card__produce--vegetables,
  .growable-card__produce--flowers {
    top: auto;
    right: -6px;
    bottom: -7px;
    left: auto;
    width: min(49%, 210px);
    height: 148px;
    object-fit: contain;
    transform: none;
  }
  .growable__ground-line {
    display: none;
  }

  .grow-series-showcase {
    min-height: 0;
    padding: var(--mobile-section-space) 0;
    overflow: hidden;
  }
  .grow-series-showcase::before {
    content: none;
  }
  .grow-series-showcase__intro {
    position: relative;
    inset: auto;
    width: var(--page);
    height: auto;
    margin: 0 auto;
  }
  .grow-series-showcase__title-wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .grow-series-showcase__vertical-label {
    position: relative;
    inset: auto;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: #568126;
    background: rgba(149, 200, 63, 0.12);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .grow-series-showcase__title-leaf {
    position: relative;
    inset: auto;
    width: 32px;
    height: 25px;
    margin: 8px auto 0;
  }
  .grow-series-showcase h2 {
    position: relative;
    inset: auto;
    margin-top: 6px;
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    line-height: 1.04;
    white-space: normal;
  }
  .grow-series-showcase__intro > p {
    position: relative;
    inset: auto;
    max-width: 38ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .grow-series-showcase__intro > p > span {
    display: inline;
  }
  .grow-series-showcase__panel {
    position: relative;
    inset: auto;
    width: var(--page);
    height: auto;
    margin: 28px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .grow-series-card {
    width: 100%;
    height: auto;
  }
  .grow-series-card > article {
    min-height: 0;
    height: auto;
    padding: 12px 16px 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: var(--mobile-card-radius);
    background: rgba(250, 252, 247, 0.97);
    box-shadow: 0 10px 28px rgba(34, 67, 17, 0.07);
  }
  .grow-series-card__media {
    width: 100%;
    height: 230px;
    flex: 0 0 230px;
  }
  .grow-series-card__image,
  .grow-series-card.is-active .grow-series-card__image {
    left: 50%;
    max-width: none;
    transform: translateX(-50%);
  }
  .grow-series-card__image--mini {
    bottom: 6px;
    left: 50%;
    width: min(260px, 78vw);
  }
  .grow-series-card__image--me {
    bottom: 28px;
    width: min(270px, 80vw);
  }
  .grow-series-card__image--big {
    bottom: -8px;
    left: 50%;
    width: auto;
    height: 238px;
  }
  .grow-series-card__body,
  .grow-series-card:nth-child(3) .grow-series-card__body {
    min-height: 0;
    padding: 0;
    text-align: left;
  }
  .grow-series-card h3 {
    font-size: 1.375rem;
    line-height: 1.2;
  }
  .grow-series-card__summary,
  .grow-series-card__detail {
    font-size: 1rem;
    line-height: 1.5;
  }
  .grow-series-card__summary {
    margin-top: 8px;
  }
  .grow-series-card__summary > span {
    display: inline;
  }
  .grow-series-card__detail {
    margin-top: 8px;
  }
  .grow-series-card__footer {
    min-width: 0;
    margin-top: 18px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 13px;
  }
  .grow-series-card__price,
  .grow-series-card:nth-child(3) .grow-series-card__price {
    min-width: 0;
    margin: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .grow-series-card__price > span {
    position: static;
    font-size: 0.875rem;
  }
  .grow-series-card__price > strong {
    margin: 0;
    font-size: 1.75rem;
  }
  .grow-series-card__actions,
  .grow-series-card:nth-child(2) .grow-series-card__actions,
  .grow-series-card:nth-child(3) .grow-series-card__actions {
    position: relative;
    left: auto;
    width: 100%;
    margin: 0;
    align-self: stretch;
    gap: 10px;
  }
  .grow-series-card__cart {
    width: auto;
    min-width: 0;
    height: 48px;
    flex: 1;
    padding: 0 18px;
    font-size: 0.9375rem;
  }
  .grow-series-card__favourite {
    width: 48px;
    height: 48px;
  }
  .grow-series-showcase__pagination {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-botanical-continuum {
    background-image:
      linear-gradient(
        90deg,
        rgba(251, 252, 248, 0.96) 0%,
        rgba(251, 252, 248, 0.72) 16%,
        rgba(251, 252, 248, 0.72) 84%,
        rgba(251, 252, 248, 0.96) 100%
      ),
      url("./assets/growth-process-continuum-bg-light-768.webp");
  }
  .about {
    min-height: 0;
    padding: var(--mobile-section-space) 0;
    display: flex;
    flex-direction: column;
  }
  .about__image-wrap {
    position: relative;
    inset: auto;
    order: 1;
    width: var(--page);
    height: min(300px, 78vw);
    margin: 0 auto 22px;
    transform: none;
  }
  .about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(54deg) scale(1.02);
    filter: drop-shadow(0 18px 24px rgba(21, 52, 11, 0.12));
  }
  .about__halo {
    top: 50%;
    left: 50%;
    width: min(270px, 72vw);
    height: min(270px, 72vw);
    background: rgba(237, 246, 228, 0.88);
    transform: translate(-50%, -50%);
  }
  .about__copy {
    position: relative;
    order: 2;
    width: var(--page);
    margin: 0 auto;
    padding: 0;
  }
  .vertical-label {
    position: relative;
    inset: auto;
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #568126;
    background: rgba(149, 200, 63, 0.12);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .about__copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
    line-height: 1.04;
  }
  .about__copy p {
    margin: 0 0 14px;
    color: #3f493a;
    font-size: 1rem;
    line-height: 1.65;
  }
  .about__leaf-accent {
    display: none;
  }

  .section-title,
  .section-title--left,
  .section-title--center {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .section-title__label {
    position: relative;
    inset: auto;
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #568126;
    background: rgba(149, 200, 63, 0.12);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .section-title h2 {
    margin-top: 10px;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
    line-height: 1.04;
  }

  .testimonials {
    min-height: 0;
    padding: var(--mobile-section-space) 0;
  }
  .testimonials > div:first-child,
  .testimonial-grid,
  .section-pagination--testimonials {
    width: var(--page);
    margin-right: auto;
    margin-left: auto;
  }
  .testimonials__tree {
    top: 2px;
    right: -72px;
    width: 180px;
    height: 180px;
    opacity: 0.12;
  }
  .testimonial-grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card,
  .testimonial-card:nth-child(2) {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(118, 170, 37, 0.14);
    border-radius: 20px;
    background: rgba(239, 247, 232, 0.96);
  }
  .testimonial-card:nth-child(2) {
    display: grid;
  }
  .testimonial-card__portrait {
    width: 92px;
    height: 128px;
    margin: 0;
    border-width: 0 4px 4px;
    border-radius: 28px 28px 20px 20px;
  }
  .testimonial-card__copy {
    min-width: 0;
    text-align: left;
  }
  .testimonial-card h3 {
    margin: 0 26px 8px 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  .testimonial-card p {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  .quote-mark {
    top: -12px;
    right: 0;
    font-size: 2.5rem;
  }
  .stars {
    justify-content: flex-start;
    gap: 3px;
  }
  .section-pagination--testimonials {
    display: none;
  }

  .contact {
    min-height: 0;
    padding: var(--mobile-section-space) 0 32px;
    display: flex;
    flex-direction: column;
  }
  .contact::before {
    content: none;
  }
  .contact > div:first-child {
    order: 1;
  }
  .contact-card {
    position: relative;
    order: 2;
    width: var(--page);
    margin: 26px auto 0;
    padding: 20px;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: var(--mobile-card-radius);
    background: rgba(239, 247, 232, 0.97);
    box-shadow: 0 12px 34px rgba(41, 75, 28, 0.08);
  }
  .contact-card form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-card label,
  .contact-card__message {
    grid-column: 1;
    display: grid;
    gap: 7px;
  }
  .contact-card label > span {
    position: relative;
    width: auto;
    height: auto;
    padding: 0 2px;
    overflow: visible;
    clip: auto;
    color: #33452c;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: normal;
  }
  .contact-card input,
  .contact-card textarea {
    border-color: rgba(92, 139, 32, 0.42);
    border-radius: 15px;
    color: #172115;
    background: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.4;
  }
  .contact-card input {
    height: 52px;
    padding: 0 16px;
  }
  .contact-card textarea {
    min-height: 132px;
    padding: 14px 16px;
  }
  .contact-card input::placeholder,
  .contact-card textarea::placeholder {
    color: #687362;
    opacity: 1;
  }
  .contact-card .button {
    width: 100%;
    min-height: 52px;
    margin-top: 2px;
    grid-column: 1;
    justify-self: stretch;
    font-size: 1rem;
  }
  .form-status {
    grid-column: 1;
    min-height: 24px;
    margin: -2px 0 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    text-align: center;
  }
  .contact__plant {
    position: relative;
    inset: auto;
    order: 3;
    z-index: 1;
    width: 180px;
    height: 180px;
    margin: 10px auto -22px;
    object-fit: contain;
    transform: rotate(-6deg);
  }

  .footer {
    min-height: 0;
    padding:
      36px max(16px, env(safe-area-inset-right, 0px))
      max(22px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
    border-radius: 34px 34px 0 0;
  }
  .footer::after {
    right: -45%;
    bottom: -20%;
    width: 320px;
    height: 320px;
  }
  .footer__inner {
    width: min(608px, 100%);
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer__brand {
    grid-column: auto;
    text-align: center;
  }
  .footer__logo {
    width: 180px;
    height: 62px;
    padding: 8px 12px;
    margin: 0 auto;
    border-radius: 14px;
  }
  .footer__community-title {
    max-width: 23ch;
    margin: 18px auto 0;
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .socials {
    margin-top: 16px;
    justify-content: center;
    gap: 10px;
  }
  .socials a {
    width: 48px;
    height: 48px;
  }
  .footer__contact {
    max-width: 38ch;
    margin: 18px auto 0;
    gap: 4px;
    justify-items: center;
  }
  .footer__contact-item,
  .footer__address {
    min-height: 44px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
  }
  .footer__links {
    width: 100%;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
  .footer__disclosure {
    min-height: 52px;
    padding: 0 4px;
    align-items: center;
    color: #f4faef;
    cursor: pointer;
    pointer-events: auto;
  }
  .footer__links-heading {
    margin: 0;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }
  .footer__disclosure > svg {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform 220ms var(--mobile-ease);
  }
  .footer__links.is-open .footer__disclosure > svg {
    transform: rotate(180deg);
  }
  .footer__links-content {
    width: 100%;
    padding: 2px 0 10px;
    gap: 0;
  }
  .footer__links-content[hidden] {
    display: none;
  }
  .footer__links a {
    width: 100%;
    min-height: 48px;
    padding: 8px 4px;
    font-size: 0.9375rem;
    line-height: 1.45;
  }
  .footer__copyright {
    width: min(608px, 100%);
    margin: 20px auto 0;
    padding-top: 16px;
    font-size: 0.75rem;
    line-height: 1.55;
  }
  .toast {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: auto;
    min-width: 0;
    max-width: 420px;
    min-height: 48px;
    margin: 0 auto;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
    transform: translateY(18px);
  }
  .toast--visible {
    transform: translateY(0);
  }

  .reveal {
    transition-property: opacity, transform !important;
    transition-duration: 260ms !important;
    transition-delay: 0ms !important;
    transition-timing-function: var(--mobile-ease) !important;
  }
  :is(
    .site-nav__link,
    .site-nav__close,
    .cart-button,
    .menu-button,
    .button,
    .growth-card__cta,
    .story-card__cta,
    .grow-anywhere-card__cta,
    .growable-card,
    .grow-series-card__cart,
    .grow-series-card__favourite,
    .footer__disclosure,
    .footer__links a,
    .socials a
  ):active {
    opacity: 0.9;
    transition-duration: 100ms;
  }
}

@media (max-width: 360px) {
  :root {
    --mobile-gutter: 14px;
    --page: calc(100% - 28px);
  }
  .site-header,
  .site-header.site-header--scrolled {
    padding-right: 6px;
    padding-left: 6px;
  }
  .site-header__inner {
    padding-left: 8px;
  }
  .header-brand {
    --brand-frame-width: 120px;
    --brand-logo-width: 118px;
  }
  .header-actions {
    min-width: 90px;
    gap: 2px;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 11.4vw, 2.55rem);
  }
  .testimonial-card,
  .testimonial-card:nth-child(2) {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }
  .testimonial-card__portrait {
    width: 78px;
    height: 112px;
  }
  .testimonial-card p {
    font-size: 0.875rem;
  }
  .growable-card__copy {
    max-width: 62%;
    padding-left: 16px;
  }
  .growable-card__produce,
  .growable-card__produce--basil,
  .growable-card__produce--tomatoes,
  .growable-card__produce--vegetables,
  .growable-card__produce--flowers {
    right: -18px;
    width: 48%;
  }
}
@media (max-width: 420px) {
  .story-card__content {
    width: 66%;
    padding-left: 18px;
  }
  .story-card h3 {
    font-size: clamp(25px, 7.4vw, 30px);
  }
}
.growth-process-flow {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background-color: #fbfcf8;
  background-image: url("./assets/growth-process-continuum-bg-light.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.growth-process-flow > .how-it-works,
.growth-process-flow > .process-video {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 0;
  background: transparent;
}
.growth-process-flow > .how-it-works + .process-video {
  margin-top: 0;
  border-top: 0;
}
.how-it-works {
  --how-green: var(--lime-deep);
  --how-green-soft: var(--lime);
  --how-dark: var(--forest);
  --how-copy: var(--muted);
  --how-grid: min(1560px, calc(100% - clamp(48px, 6.22vw, 104px)));
  position: relative;
  z-index: 2;
  min-height: 885px;
  padding: 38px 0 52px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}
.how-it-works__botanical {
  display: none;
}
.how-it-works__botanical.reveal {
  opacity: 0;
  transform: translate(-10px, 8px) scale(0.985);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.how-it-works__botanical.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.how-it-works__intro {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}
.how-it-works__mark {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.how-it-works__mark img,
.how-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(22%) saturate(1381%)
    hue-rotate(89deg) brightness(91%) contrast(90%);
}
.how-it-works__eyebrow {
  margin: 13px 0 0;
  color: var(--how-green);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
}
.how-it-works h2 {
  margin: 14px 0 0;
  color: var(--how-dark);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(62px, 5.27vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.how-it-works__summary {
  margin: 17px 0 0;
  color: var(--how-copy);
  font-size: clamp(18px, 1.44vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.how-it-works__journey {
  position: relative;
  z-index: 2;
  width: var(--how-grid);
  min-height: 499px;
  margin: 62px auto 0;
}
.how-it-works__journey.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.how-it-works__connector {
  position: absolute;
  top: 221px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  max-width: none;
  pointer-events: none;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.18s ease 0.16s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.16s;
}
.how-it-works__journey.is-visible .how-it-works__connector {
  opacity: 1;
  transform: scaleX(1);
}
.how-it-works__steps {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.08vw, 35px);
  list-style: none;
}
.how-step {
  --step-delay: 80ms;
  min-width: 0;
  height: 457px;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1) var(--step-delay),
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1) var(--step-delay);
}
.how-step--2 {
  --step-delay: 220ms;
}
.how-step--3 {
  --step-delay: 360ms;
}
.how-step--4 {
  --step-delay: 500ms;
}
.how-it-works__journey.is-visible .how-step {
  opacity: 1;
  transform: none;
}
.how-step__card {
  position: relative;
  height: 100%;
  padding: 56px 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  border: 1px solid rgba(18, 79, 45, 0.14);
  border-radius: 29px;
  color: var(--how-dark);
  background: #fff;
  box-shadow:
    0 17px 32px rgba(16, 58, 34, 0.09),
    0 3px 8px rgba(16, 58, 34, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}
.how-step__number {
  position: absolute;
  top: -42px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 79, 45, 0.11);
  border-radius: 50%;
  color: var(--how-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 23px rgba(9, 63, 34, 0.11),
    inset 0 1px 0 #fff;
  opacity: 0;
  transform: translate(-50%, -8px) scale(0.88);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1)
      calc(var(--step-delay) + 90ms),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1)
      calc(var(--step-delay) + 90ms);
}
.how-it-works__journey.is-visible .how-step__number {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
.how-step__number > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid var(--how-green-soft);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 15px rgba(14, 80, 43, 0.08);
  font-size: clamp(26px, 1.93vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-step__media {
  width: 100%;
  height: 260px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.how-step__media > img {
  width: min(380px, calc(100% + 60px));
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.06) saturate(1.08);
  transform: translateY(4px) scale(1.08);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-step__leaf-art {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 0;
  width: 110px;
  height: 110px;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.5;
  filter: saturate(1.45) brightness(0.82);
  transform-origin: right bottom;
  transition:
    opacity 0.34s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-step:nth-child(even) .how-step__leaf-art {
  transform: none;
}
.how-step__label {
  position: relative;
  z-index: 2;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-step__icon {
  width: 68px;
  height: 68px;
  padding: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf7e8;
}
.how-step__label h3 {
  margin: 12px 0 0;
  color: var(--how-dark);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(17px, 1.32vw, 22px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
@media (hover: hover) and (pointer: fine) {
  .how-step__card:hover {
    border-color: rgba(42, 138, 75, 0.32);
    box-shadow:
      0 24px 43px rgba(16, 58, 34, 0.14),
      0 5px 12px rgba(16, 58, 34, 0.05);
    transform: translateY(-6px);
  }
  .how-step__card:hover .how-step__media > img {
    transform: scale(1.12);
  }
  .how-step__card:hover .how-step__number > span {
    transform: translateY(-2px) scale(1.04);
  }
  .how-step__card:hover .how-step__leaf-art {
    opacity: 0.68;
    transform: translate(-2px, -2px) scale(1.01);
  }
  .how-step:nth-child(even) .how-step__card:hover .how-step__leaf-art {
    transform: translate(-2px, -2px) scale(1.01);
  }
}
@media (max-width: 1366px) {
  .how-it-works {
    --how-grid: min(1260px, calc(100% - 52px));
  }
  .how-it-works__steps {
    gap: 20px;
  }
  .how-step__card {
    padding: 60px 17px 30px;
  }
  .how-step__media {
    height: 244px;
  }
  .how-step__media > img {
    width: calc(100% + 50px);
  }
}
@media (max-width: 1050px) {
  .how-it-works {
    --how-grid: min(820px, calc(100% - 48px));
    min-height: auto;
    padding-bottom: 84px;
  }
  .how-it-works__journey {
    min-height: auto;
    margin-top: 66px;
  }
  .how-it-works__connector {
    display: none;
  }
  .how-it-works__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 66px 26px;
  }
  .how-step {
    height: 457px;
  }
}
@media (max-width: 780px) {
  .how-it-works {
    --how-grid: min(430px, calc(100% - 34px));
    padding: 54px 0 72px;
  }
  .how-it-works__botanical {
    object-position: center top;
    opacity: 0.72;
  }
  .how-it-works__intro {
    width: calc(100% - 42px);
  }
  .how-it-works__eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
  }
  .how-it-works h2 {
    font-size: clamp(43px, 11vw, 58px);
  }
  .how-it-works__summary {
    max-width: 360px;
    margin-inline: auto;
    font-size: 16px;
  }
  .how-it-works__journey {
    margin-top: 58px;
  }
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}
@media (max-width: 420px) {
  .how-step {
    height: 438px;
  }
  .how-step__card {
    padding-inline: 14px;
  }
  .how-step__media {
    height: 218px;
  }
}
.process-video {
  position: relative;
  z-index: 2;
  min-height: min(1015px, 70.1vw);
  padding: min(80px, 5.53vw) 0 min(120px, 8.29vw);
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}
.process-video__intro {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}
.process-video__eyebrow {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--lime-deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.process-video__seedling {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(22%) saturate(1381%)
    hue-rotate(89deg) brightness(91%) contrast(90%);
}
.process-video__dots {
  height: 6px;
  margin: 7px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.process-video__dots > span {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 1px 3px rgba(118, 170, 37, 0.24);
}
.process-video h2 {
  margin: 26px 0 0;
  color: var(--forest);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(56px, 4.28vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.process-video__title-dark,
.process-video__title-accent {
  display: inline;
}
.process-video__title-accent {
  color: var(--lime);
}
.process-video__summary {
  max-width: 900px;
  margin: 16px auto 0;
  color: #4e584b;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.022em;
}
.process-video__media {
  position: relative;
  z-index: 2;
  width: min(1072px, 74.03vw);
  aspect-ratio: 1072 / 589;
  margin: min(52px, 3.59vw) auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 10, 0.1);
  border-radius: 25px;
  background: #07160a;
  box-shadow:
    0 29px 70px rgba(13, 48, 20, 0.14),
    0 5px 18px rgba(13, 48, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.process-video__player {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #07160a;
}
.process-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 108px;
  height: 108px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 48px rgba(7, 38, 18, 0.2),
    0 5px 15px rgba(7, 38, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition:
    opacity 200ms ease,
    visibility 0s linear,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 200ms ease,
    box-shadow 220ms ease;
}
.process-video__play > img,
.process-video__play > svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  color: currentColor;
}
.process-video__play:focus-visible {
  outline: 4px solid rgba(149, 200, 63, 0.72);
  outline-offset: 5px;
}
.process-video__play:active {
  transform: translate(-50%, -50%) scale(0.97);
}
.process-video__play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms,
    transform 180ms ease;
}
.process-video__intro.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-video__media.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    box-shadow 0.28s ease;
}
.process-video__intro.reveal.is-visible,
.process-video__media.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.grow-anywhere {
  position: relative;
  z-index: 2;
  min-height: min(941px, 56.28vw);
  margin-top: -2px;
  padding: min(72px, 4.31vw) 0 min(79px, 4.73vw);
  overflow: hidden;
  isolation: isolate;
  background-color: #fbfcf8;
  background-image: url("./assets/growth-process-continuum-bg-light.webp");
  background-repeat: no-repeat;
  background-position: center -2px;
  background-size: 100% auto;
}
.grow-anywhere__intro {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}
.grow-anywhere__mark {
  width: min(190px, 11.37vw);
  height: min(40px, 2.4vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr min(40px, 2.4vw) 1fr;
  align-items: center;
  gap: min(14px, 0.84vw);
}
.grow-anywhere__mark > span {
  height: 1px;
  background: rgba(118, 170, 37, 0.68);
}
.grow-anywhere__mark > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(62%) saturate(476%)
    hue-rotate(39deg) brightness(96%) contrast(92%);
}
.grow-anywhere h2 {
  margin: min(10px, 0.6vw) 0 0;
  color: var(--forest);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(50px, 3.71vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.grow-anywhere h2 strong {
  color: var(--lime);
  font-weight: inherit;
}
.grow-anywhere__intro > p {
  margin: min(20px, 1.2vw) 0 0;
  color: #4f594c;
  font-size: clamp(14px, 1.02vw, 17px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.022em;
}
.grow-anywhere__grid {
  position: relative;
  z-index: 2;
  width: min(1542px, 92.22vw);
  margin: min(64px, 3.83vw) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: min(20px, 1.2vw);
  list-style: none;
}
.grow-anywhere__item {
  min-width: 0;
}
.grow-anywhere__item.reveal {
  transition-delay: var(--grow-delay, 0ms);
}
.grow-anywhere-card {
  position: relative;
  height: min(568px, 33.97vw);
  overflow: hidden;
  border: 1px solid rgba(118, 170, 37, 0.24);
  border-radius: min(26px, 1.56vw);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 42px rgba(24, 67, 12, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease,
    box-shadow 220ms ease;
}
.grow-anywhere-card::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: min(72px, 4.31vw);
  height: min(72px, 4.31vw);
  border-right: 4px solid var(--lime-deep);
  border-bottom: 4px solid var(--lime-deep);
  border-radius: 0 0 min(26px, 1.56vw) 0;
  opacity: 0.92;
  pointer-events: none;
}
.grow-anywhere-card__media {
  height: min(337px, 20.16vw);
  margin: min(12px, 0.72vw) min(12px, 0.72vw) 0;
  overflow: hidden;
  border-radius: min(20px, 1.2vw);
  background: #eef3e8;
}
.grow-anywhere-card__media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.grow-anywhere-card__leaf {
  position: absolute;
  z-index: 3;
  top: -12px;
  right: min(22px, 1.32vw);
  width: min(126px, 7.54vw);
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 9px 10px rgba(28, 77, 14, 0.13));
  transform: rotate(14deg);
  transform-origin: 70% 0;
}
.grow-anywhere-card__body {
  padding: min(20px, 1.2vw) min(28px, 1.68vw) min(26px, 1.56vw);
  display: grid;
  grid-template-columns: min(72px, 4.31vw) minmax(0, 1fr);
  align-items: start;
  gap: min(18px, 1.08vw);
}
.grow-anywhere-card__icon {
  width: min(72px, 4.31vw);
  height: min(72px, 4.31vw);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(149, 200, 63, 0.17);
}
.grow-anywhere-card__icon > img {
  width: min(36px, 2.16vw);
  height: min(36px, 2.16vw);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(37%) saturate(1446%)
    hue-rotate(75deg) brightness(88%) contrast(103%);
}
.grow-anywhere-card__copy {
  min-width: 0;
}
.grow-anywhere-card h3 {
  margin: min(8px, 0.48vw) 0 0;
  color: var(--forest-deep);
  font-size: clamp(18px, 1.38vw, 23px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.grow-anywhere-card__copy > p {
  margin: min(10px, 0.6vw) 0 0;
  min-height: 2.9em;
  color: #50594e;
  font-size: clamp(13px, 0.96vw, 16px);
  font-weight: 500;
  line-height: 1.45;
}
.grow-anywhere-card__cta {
  width: min(195px, 11.66vw);
  height: min(42px, 2.52vw);
  margin-top: min(8px, 0.48vw);
  padding: 0 min(24px, 1.44vw) 0 min(29px, 1.74vw);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--lime-deep);
  box-shadow: 0 12px 25px rgba(118, 170, 37, 0.2);
  font-size: clamp(13px, 0.84vw, 14px);
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.grow-anywhere-card__cta > img {
  width: min(20px, 1.2vw);
  height: min(20px, 1.2vw);
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  transition: transform 180ms ease;
}
.grow-anywhere__intro.reveal {
  opacity: 0;
  transform: translateY(18px);
}
.grow-anywhere__intro.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.features-designed {
  position: relative;
  z-index: 2;
  min-height: min(1086px, 75vw);
  margin-top: -2px;
  overflow: hidden;
  isolation: isolate;
  background-color: #fbfcf8;
  background-image: url("./assets/growth-process-continuum-bg-light.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.features-designed__intro {
  position: absolute;
  z-index: 4;
  top: min(20px, 1.38vw);
  right: 0;
  left: 0;
  width: min(760px, 52.49vw);
  margin: 0 auto;
  text-align: center;
}
.features-designed__seedling {
  width: min(31px, 2.14vw);
  height: min(24px, 1.66vw);
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(22%) saturate(597%)
    hue-rotate(51deg) brightness(98%) contrast(88%);
}
.features-designed__eyebrow {
  margin: min(10px, 0.69vw) 0 0;
  color: #a1c789;
  font-size: clamp(15px, 1.38vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.features-designed h2 {
  margin: min(12px, 0.83vw) 0 0;
  color: #07190b;
  font-family:
    "Playfair Display",
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(54px, 4.97vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.037em;
}
.features-designed h2 > span {
  display: block;
}
.features-designed h2 > span:nth-child(2) {
  font-size: min(56px, 3.87vw);
  line-height: min(73px, 5.04vw);
}
.features-designed h2 em {
  color: #4a7832;
  font-weight: 400;
}
.features-designed__summary {
  margin: min(7px, 0.48vw) 0 0;
  color: #696b69;
  font-size: clamp(15px, 1.31vw, 19px);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.024em;
}
.features-designed__summary > span {
  display: block;
}
.features-designed__summary strong {
  color: #4d7d36;
  font-weight: 700;
}
.features-designed__stage {
  position: absolute;
  z-index: 2;
  top: min(299px, 20.65vw);
  right: 0;
  left: 0;
  width: min(1322px, 91.3vw);
  height: min(642px, 44.34vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    min(380px, 26.24vw) minmax(0, 1fr) min(385px, 26.59vw);
  column-gap: min(46px, 3.18vw);
}
.features-designed__column {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(3, min(190px, 13.12vw));
  gap: min(22px, 1.52vw);
  list-style: none;
}
.features-designed__column--left {
  grid-column: 1;
}
.features-designed__column--right {
  grid-column: 3;
}
.features-designed__item {
  min-width: 0;
}
.features-designed__item.reveal {
  transition-delay: var(--feature-delay, 0ms);
}
.features-designed-card {
  height: 100%;
  padding: min(31px, 2.14vw) min(18px, 1.24vw) min(31px, 2.14vw)
    min(32px, 2.21vw);
  display: grid;
  grid-template-columns: min(102px, 7.04vw) minmax(0, 1fr);
  align-items: center;
  gap: min(18px, 1.24vw);
  overflow: hidden;
  border: 1px solid rgba(216, 226, 211, 0.76);
  border-radius: min(17px, 1.17vw);
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 7px 24px rgba(25, 57, 21, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 220ms ease;
}
.features-designed-card__icon {
  width: min(102px, 7.04vw);
  height: min(102px, 7.04vw);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(235, 244, 226, 0.76);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.features-designed-card__icon > img {
  width: min(58px, 4vw);
  height: min(58px, 4vw);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(30%) sepia(32%) saturate(1138%)
    hue-rotate(76deg) brightness(92%) contrast(91%);
}
.features-designed-card__copy {
  min-width: 0;
}
.features-designed-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(15px, 1.24vw, 18px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.features-designed-card p {
  margin: min(12px, 0.83vw) 0 0;
  color: #70736f;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -0.022em;
}
.features-designed__product {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
  overflow: visible;
  transition-delay: 120ms;
}
.features-designed__product > img {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(594px, 41.02vw);
  max-width: none;
  height: min(675px, 46.62vw);
  display: block;
  object-fit: fill;
  transform: translateX(-50%);
}
.features-designed__benefits {
  position: absolute;
  z-index: 4;
  top: min(987px, 68.16vw);
  right: 0;
  left: 0;
  width: min(622px, 42.96vw);
  min-height: min(45px, 3.11vw);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 0.94fr 1.18fr 0.88fr;
  list-style: none;
  transition-delay: 200ms;
}
.features-designed__benefits > li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: min(15px, 1.04vw);
}
.features-designed__benefits > li:nth-child(2) {
  padding-left: min(38px, 2.62vw);
  border-left: 1px solid rgba(171, 177, 169, 0.45);
}
.features-designed__benefits > li:nth-child(3) {
  padding-left: min(36px, 2.49vw);
  border-left: 1px solid rgba(171, 177, 169, 0.45);
}
.features-designed__benefit-icon {
  width: min(45px, 3.11vw);
  height: min(45px, 3.11vw);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(235, 244, 226, 0.9);
}
.features-designed__benefit-icon > img {
  width: min(24px, 1.66vw);
  height: min(24px, 1.66vw);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(28%) saturate(910%)
    hue-rotate(69deg) brightness(93%) contrast(88%);
}
.features-designed__benefit-copy {
  min-width: 0;
  color: #424a42;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 500;
  line-height: 1.52;
  white-space: nowrap;
}
.features-designed__benefit-copy > span {
  display: block;
}
.growable {
  --growable-surface: #f4f7ec;
  --growable-card: rgba(244, 248, 237, 0.9);
  --growable-border: rgba(157, 183, 117, 0.54);
  --growable-ink: #1f3810;
  --growable-muted: #687260;
  position: relative;
  z-index: 2;
  min-height: min(941px, 56.28vw);
  margin-top: -2px;
  overflow: hidden;
  isolation: isolate;
  background: var(--growable-surface);
}
.growable::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("./assets/process-video-botanical-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  transform: scaleX(-1);
}
.growable__intro {
  position: absolute;
  z-index: 3;
  top: min(80px, 4.78vw);
  right: 0;
  left: 0;
  width: min(760px, 45.45vw);
  margin: 0 auto;
  text-align: center;
}
.growable__intro h2 {
  margin: 0;
  color: var(--growable-ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(42px, 3.35vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.growable__intro h2 strong {
  color: var(--lime);
  font-weight: inherit;
}
.growable__ornament {
  width: min(138px, 8.25vw);
  height: min(20px, 1.2vw);
  margin: min(11px, 0.66vw) auto 0;
  display: grid;
  grid-template-columns: 1fr min(20px, 1.2vw) 1fr;
  align-items: center;
  gap: min(10px, 0.6vw);
}
.growable__ornament > span {
  height: 1px;
  background: rgba(118, 170, 37, 0.72);
}
.growable__ornament > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(56%) saturate(539%)
    hue-rotate(38deg) brightness(96%) contrast(89%);
}
.growable__intro > p {
  margin: min(19px, 1.14vw) 0 0;
  color: #747c7c;
  font-size: clamp(15px, 1.14vw, 19px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.021em;
}
.growable__intro > p > span {
  display: block;
}
.growable__stage {
  position: absolute;
  z-index: 2;
  top: min(288px, 17.22vw);
  left: min(80px, 4.78vw);
  width: min(1494px, 89.35vw);
  height: min(572px, 34.21vw);
  display: grid;
  grid-template-columns: min(732px, 43.78vw) min(727px, 43.48vw);
  column-gap: min(35px, 2.09vw);
}
.growable__lifestyle {
  position: relative;
  z-index: 2;
  width: min(732px, 43.78vw);
  height: min(542px, 32.42vw);
  margin: 0;
  overflow: visible;
  transition-delay: 70ms;
}
.growable__photo-tab {
  position: absolute;
  z-index: -1;
  top: min(25px, 1.5vw);
  bottom: min(215px, 12.86vw);
  left: min(-23px, -1.38vw);
  width: min(70px, 4.19vw);
  border-radius: min(30px, 1.79vw) 0 0 min(30px, 1.79vw);
  background: rgba(157, 188, 120, 0.82);
}
.growable__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: min(34px, 2.03vw);
  box-shadow: 0 16px 38px rgba(39, 71, 23, 0.055);
}
.growable-badge {
  position: absolute;
  z-index: 4;
  top: min(-52px, -3.11vw);
  left: min(28px, 1.67vw);
  width: min(150px, 8.97vw);
  height: min(150px, 8.97vw);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 231, 219, 0.88);
  border-radius: 50%;
  color: #376519;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 13px 30px rgba(34, 68, 20, 0.11);
}
.growable-badge > img {
  width: min(51px, 3.05vw);
  height: min(51px, 3.05vw);
  margin: min(5px, 0.3vw) 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(53%) sepia(77%) saturate(512%)
    hue-rotate(39deg) brightness(96%) contrast(90%);
}
.growable-badge__top,
.growable-badge__bottom {
  display: block;
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.growable__grid {
  width: min(727px, 43.48vw);
  height: min(572px, 34.21vw);
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, min(353px, 21.11vw));
  grid-template-rows: min(275px, 16.45vw) min(278px, 16.63vw);
  gap: min(19px, 1.14vw) min(21px, 1.26vw);
  list-style: none;
}
.growable__item {
  min-width: 0;
}
.growable__item.reveal {
  transition-delay: var(--growable-delay, 0ms);
}
.growable-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid var(--growable-border);
  border-radius: min(31px, 1.85vw);
  color: inherit;
  background: var(--growable-card);
  box-shadow: 0 12px 30px rgba(40, 70, 20, 0.025);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 190ms ease,
    background-color 190ms ease,
    box-shadow 220ms ease;
}
.growable-card__copy {
  position: absolute;
  z-index: 4;
  top: min(34px, 2.03vw);
  left: min(31px, 1.85vw);
  max-width: min(184px, 11vw);
}
.growable-card h3 {
  margin: 0;
  color: var(--growable-ink);
  font-size: clamp(17px, 1.32vw, 22px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.035em;
}
.growable-card__mini-mark {
  width: min(38px, 2.27vw);
  height: min(12px, 0.72vw);
  margin-top: min(5px, 0.3vw);
  display: grid;
  grid-template-columns: min(21px, 1.26vw) min(12px, 0.72vw);
  align-items: center;
  gap: min(5px, 0.3vw);
}
.growable-card__mini-mark > span {
  height: 2px;
  border-radius: 999px;
  background: #34571f;
}
.growable-card__mini-mark > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(59%) sepia(66%) saturate(521%)
    hue-rotate(39deg) brightness(95%) contrast(89%);
}
.growable-card p {
  margin: min(17px, 1.02vw) 0 0;
  color: var(--growable-muted);
  font-size: clamp(12px, 0.84vw, 14px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.018em;
}
.growable-card p > span {
  display: block;
}
.growable-card__arrow {
  position: absolute;
  z-index: 5;
  top: min(22px, 1.32vw);
  right: min(23px, 1.38vw);
  width: min(38px, 2.27vw);
  height: min(38px, 2.27vw);
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 148, 40, 0.88);
  border-radius: 50%;
  color: #608f25;
  background: rgba(255, 255, 255, 0.36);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.growable-card__arrow > img {
  width: min(17px, 1.02vw);
  height: min(17px, 1.02vw);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(50%) sepia(45%) saturate(832%)
    hue-rotate(43deg) brightness(91%) contrast(87%);
  transform: rotate(-45deg);
}
.growable-card__line-art {
  position: absolute;
  z-index: 1;
  right: min(47px, 2.81vw);
  bottom: min(24px, 1.44vw);
  width: min(150px, 8.97vw);
  height: min(150px, 8.97vw);
  object-fit: contain;
  opacity: 0.1;
}
.growable-card__produce {
  position: absolute;
  z-index: 3;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 13px rgba(38, 63, 22, 0.1));
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.growable-card__produce--basil {
  top: min(113px, 6.76vw);
  left: min(34px, 2.03vw);
  width: min(260px, 15.55vw);
  height: min(200px, 11.96vw);
  object-fit: fill;
}
.growable-card__produce--tomatoes {
  top: min(57px, 3.41vw);
  left: min(48px, 2.87vw);
  width: min(290px, 17.34vw);
  height: min(230px, 13.76vw);
  object-fit: fill;
}
.growable-card__produce--vegetables {
  top: min(90px, 5.38vw);
  right: min(4px, 0.24vw);
  width: min(265px, 15.85vw);
  height: min(230px, 13.76vw);
  object-fit: fill;
}
.growable-card__produce--flowers {
  top: min(56px, 3.35vw);
  left: min(77px, 4.61vw);
  width: min(280px, 16.75vw);
  height: min(235px, 14.06vw);
  object-fit: fill;
}
.growable__ground-line {
  position: absolute;
  z-index: 2;
  top: min(899px, 53.77vw);
  left: min(241px, 14.41vw);
  width: min(410px, 24.52vw);
  height: 1px;
  background: rgba(118, 170, 37, 0.44);
}
.growable__ground-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(118, 170, 37, 0.58);
  transform: translateY(-50%);
}
.grow-series-showcase {
  --grow-series-surface: #f6faf2;
  --grow-series-ink: #101e0d;
  --grow-series-accent: #78a927;
  --grow-series-action: #5a821b;
  --grow-series-copy: #626a66;
  position: relative;
  z-index: 1;
  min-height: clamp(870px, 56.28vw, 941px);
  margin-top: -2px;
  overflow: hidden;
  isolation: isolate;
  background: #fafcf6;
}
.grow-series-showcase::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("./assets/grow-series-botanical-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
}
.grow-series-showcase__intro {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: min(221px, 13.22vw);
  text-align: center;
}
.grow-series-showcase__title-wrap {
  position: relative;
  width: min(690px, 41.27vw);
  height: min(116px, 6.94vw);
  margin: 0 auto;
  border-left: min(5px, 0.3vw) solid #67a90f;
}
.grow-series-showcase__vertical-label {
  position: absolute;
  top: min(61px, 3.65vw);
  left: min(104px, 6.22vw);
  color: #5d9721;
  font-size: clamp(14px, 0.96vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.grow-series-showcase__title-leaf {
  position: absolute;
  top: min(37px, 2.21vw);
  left: min(268px, 16.03vw);
  width: min(47px, 2.81vw);
  height: min(35px, 2.09vw);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(65%) sepia(35%) saturate(810%)
    hue-rotate(39deg) brightness(100%) contrast(82%);
  opacity: 0.72;
  transform: rotate(-10deg);
}
.grow-series-showcase h2 {
  position: absolute;
  top: min(72px, 4.31vw);
  left: min(155px, 9.27vw);
  margin: 0;
  color: var(--grow-series-ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(48px, 3.71vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.grow-series-showcase h2 strong {
  color: var(--grow-series-accent);
  font-weight: inherit;
}
.grow-series-showcase__intro > p {
  position: absolute;
  top: min(162px, 9.69vw);
  right: 0;
  left: 0;
  margin: 0 auto;
  color: var(--grow-series-copy);
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.grow-series-showcase__intro > p > span {
  display: block;
}
.grow-series-showcase__panel {
  position: absolute;
  z-index: 3;
  top: clamp(235px, 15.55vw, 260px);
  right: 0;
  left: 0;
  width: min(1441px, calc(100% - 96px));
  height: clamp(522px, 34.03vw, 569px);
  margin: 0 auto;
  padding: clamp(24px, 1.73vw, 29px) clamp(48px, 4.67vw, 78px)
    clamp(31px, 2.81vw, 47px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(34px, 5.26vw, 88px);
  overflow: hidden;
  border-radius: min(32px, 1.91vw);
  background: rgba(246, 250, 242, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  list-style: none;
  transition-delay: 80ms;
}
.grow-series-card {
  min-width: 0;
  height: 100%;
}
.grow-series-card > article {
  height: 100%;
  display: grid;
  grid-template-rows:
    clamp(230px, 15.91vw, 266px) clamp(145px, 8.79vw, 147px)
    80px;
}
.grow-series-card__media {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
}
.grow-series-card__image {
  position: absolute;
  left: 50%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 11px 15px rgba(32, 65, 17, 0.075));
  transform: translateX(-50%);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease;
}
.grow-series-card.is-active .grow-series-card__image {
  filter: drop-shadow(0 13px 17px rgba(32, 65, 17, 0.12));
}
.grow-series-card__image--mini {
  bottom: min(17px, 1.02vw);
  left: calc(50% - 14px);
  width: clamp(240px, 16.03vw, 268px);
  height: auto;
}
.grow-series-card__image--me {
  bottom: min(44px, 2.63vw);
  width: clamp(244px, 16.15vw, 270px);
  height: auto;
}
.grow-series-card__image--big {
  bottom: min(-18px, -1.08vw);
  left: calc(50% - 12px);
  width: auto;
  height: clamp(268px, 17.46vw, 292px);
}
.grow-series-card__body {
  min-width: 0;
  text-align: center;
}
.grow-series-card:nth-child(3) .grow-series-card__body {
  padding-top: min(16px, 0.96vw);
}
.grow-series-card h3 {
  margin: 0;
  color: var(--grow-series-ink);
  font-size: clamp(20px, 1.32vw, 22px);
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: -0.045em;
}
.grow-series-card h3 strong {
  color: var(--grow-series-accent);
  font-weight: inherit;
}
.grow-series-card__summary,
.grow-series-card__detail {
  color: var(--grow-series-copy);
  font-size: clamp(14px, 0.96vw, 16px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.025em;
}
.grow-series-card__summary {
  margin: min(8px, 0.48vw) 0 0;
}
.grow-series-card__summary > span {
  display: block;
}
.grow-series-card__detail {
  margin: min(16px, 0.96vw) 0 0;
}
.grow-series-card__footer {
  min-width: 0;
  padding-top: min(13px, 0.78vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(181, 202, 163, 0.42);
}
.grow-series-card__price {
  min-width: 86px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--grow-series-copy);
  text-align: left;
}
.grow-series-card__price > span {
  position: relative;
  top: -8px;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.35;
}
.grow-series-card__price > strong {
  margin-top: min(11px, 0.66vw);
  color: #4e9129;
  font-size: clamp(27px, 1.91vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}
.grow-series-card__actions {
  display: flex;
  align-items: center;
  align-self: end;
  gap: 13px;
  margin-bottom: 2px;
}
.grow-series-card:nth-child(2) .grow-series-card__actions {
  position: relative;
  left: -15px;
}
.grow-series-card:nth-child(3) .grow-series-card__price {
  margin-left: 22px;
}
.grow-series-card:nth-child(3) .grow-series-card__actions {
  position: relative;
  left: 9px;
}
.grow-series-card__cart,
.grow-series-card__favourite,
.grow-series-showcase__pagination > button {
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
}
.grow-series-card__cart {
  width: 129px;
  height: 44px;
  padding: 0 16px 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--grow-series-action);
  box-shadow: 0 8px 17px rgba(90, 139, 24, 0.16);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 200ms ease,
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.grow-series-card__cart svg {
  flex: 0 0 auto;
}
.grow-series-card__favourite {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--grow-series-action);
  border-radius: 50%;
  color: var(--grow-series-action);
  background: rgba(255, 255, 255, 0.56);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.grow-series-card__favourite.is-favourite {
  color: #fff;
  border-color: var(--grow-series-action);
  background: var(--grow-series-action);
}
.grow-series-card__cart:focus-visible,
.grow-series-card__favourite:focus-visible,
.grow-series-showcase__pagination > button:focus-visible {
  outline: 3px solid #3f6412;
  outline-offset: 3px;
}
.grow-series-showcase__pagination {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 43px;
  left: -8px;
  width: 366px;
  height: 44px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px 55px 164px 60px 43px;
  align-items: center;
  transition-delay: 150ms;
}
.grow-series-showcase__pagination > button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(164, 181, 159, 0.44);
  border-radius: 50%;
  color: #071e00;
  background: rgba(255, 255, 255, 0.9);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.grow-series-showcase__page {
  display: block;
  color: #172014;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.grow-series-showcase__track {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(150, 168, 146, 0.5);
}
.grow-series-showcase__track > span {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 33.333%;
  background: #6da821;
  transition: width 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .process-video__media:hover {
    box-shadow:
      0 34px 78px rgba(13, 48, 20, 0.17),
      0 7px 22px rgba(13, 48, 20, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  .process-video__play:hover {
    color: var(--lime-deep);
    background: #fff;
    box-shadow:
      0 24px 56px rgba(7, 38, 18, 0.24),
      0 7px 18px rgba(7, 38, 18, 0.12),
      inset 0 1px 0 #fff;
    transform: translate(-50%, -50%) scale(1.045);
  }
  .process-video__play:hover:active {
    transform: translate(-50%, -50%) scale(0.97);
  }
  .grow-anywhere-card:hover,
  .grow-anywhere-card:focus-within {
    border-color: rgba(118, 170, 37, 0.46);
    box-shadow:
      0 25px 58px rgba(24, 67, 12, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translateY(-7px);
  }
  .grow-anywhere-card:hover .grow-anywhere-card__media > img,
  .grow-anywhere-card:focus-within .grow-anywhere-card__media > img {
    transform: scale(1.045);
  }
  .grow-anywhere-card__cta:hover,
  .grow-anywhere-card__cta:focus-visible {
    color: #fff;
    background: var(--forest);
    box-shadow: 0 15px 30px rgba(23, 63, 10, 0.22);
    transform: translateY(-2px);
  }
  .grow-anywhere-card__cta:hover > img,
  .grow-anywhere-card__cta:focus-visible > img {
    transform: translateX(4px);
  }
  .features-designed-card:hover {
    border-color: rgba(118, 170, 37, 0.38);
    box-shadow:
      0 20px 42px rgba(24, 67, 12, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-5px);
  }
  .features-designed-card:hover .features-designed-card__icon {
    transform: scale(1.055);
  }
  .growable-card:hover,
  .growable-card:focus-visible {
    border-color: rgba(100, 151, 33, 0.78);
    background: rgba(249, 252, 244, 0.96);
    box-shadow: 0 20px 42px rgba(36, 70, 18, 0.09);
    transform: translateY(-5px);
  }
  .growable-card:hover .growable-card__arrow,
  .growable-card:focus-visible .growable-card__arrow {
    color: #fff;
    background: var(--lime);
    transform: rotate(4deg) scale(1.06);
  }
  .growable-card:hover .growable-card__produce,
  .growable-card:focus-visible .growable-card__produce {
    transform: scale(1.035);
  }
  .grow-series-card:hover .grow-series-card__image,
  .grow-series-card:focus-within .grow-series-card__image {
    filter: drop-shadow(0 16px 18px rgba(32, 65, 17, 0.12));
    transform: translateX(-50%) translateY(-5px) scale(1.025);
  }
  .grow-series-card__cart:hover {
    background: var(--forest);
    box-shadow: 0 11px 22px rgba(23, 63, 10, 0.2);
    transform: translateY(-2px);
  }
  .grow-series-card__favourite:hover,
  .grow-series-showcase__pagination > button:hover {
    color: #fff;
    border-color: var(--grow-series-action);
    background: var(--grow-series-action);
    transform: scale(1.055);
  }
}
@media (max-width: 1366px) {
  .growth-process-flow {
    background-position: center top;
    background-size: cover;
  }
  .process-video {
    min-height: 70.1vw;
    padding: 5.53vw 0 8.29vw;
  }
  .process-video h2 {
    margin-top: 24px;
  }
  .process-video__summary {
    margin-top: 15px;
    font-size: 19px;
  }
  .process-video__media {
    margin-top: 3.59vw;
  }
}
@media (max-width: 1050px) {
  .growth-process-flow {
    background-position: center top;
  }
  .process-video {
    min-height: auto;
    padding: 96px 0 88px;
  }
  .process-video__intro {
    width: calc(100% - 48px);
  }
  .process-video h2 {
    font-size: clamp(46px, 5.5vw, 56px);
  }
  .process-video__summary {
    max-width: 850px;
  }
  .process-video__media {
    width: calc(100% - 80px);
    margin-top: 40px;
    border-radius: 22px;
  }
  .process-video__play {
    width: 90px;
    height: 90px;
  }
  .process-video__play > img,
  .process-video__play > svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 780px) {
  .growth-process-flow {
    background-position: center top;
  }
  .process-video {
    padding: 72px 0 74px;
  }
  .process-video__intro {
    width: calc(100% - 42px);
  }
  .process-video__eyebrow {
    font-size: 15px;
  }
  .process-video__seedling {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }
  .process-video h2 {
    margin-top: 20px;
    font-size: clamp(38px, 7.6vw, 50px);
  }
  .process-video__summary {
    max-width: 610px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
  }
  .process-video__media {
    width: calc(100% - 34px);
    margin-top: 34px;
    border-radius: 18px;
    box-shadow: 0 22px 52px rgba(13, 48, 20, 0.13);
  }
  .process-video__play {
    width: 74px;
    height: 74px;
  }
  .process-video__play > img,
  .process-video__play > svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
  }
}
@media (max-width: 420px) {
  .process-video {
    padding: 56px 0 58px;
  }
  .process-video__intro {
    width: calc(100% - 34px);
  }
  .process-video__eyebrow {
    font-size: 14px;
  }
  .process-video__dots {
    margin-top: 5px;
  }
  .process-video h2 {
    margin-top: 16px;
    font-size: clamp(34px, 9.5vw, 40px);
    white-space: normal;
  }
  .process-video__summary {
    margin-top: 12px;
    font-size: 15px;
  }
  .process-video__media {
    width: calc(100% - 24px);
    margin-top: 26px;
    border-radius: 14px;
  }
  .process-video__play {
    width: 62px;
    height: 62px;
  }
  .process-video__play > img,
  .process-video__play > svg {
    width: 22px;
    height: 22px;
  }
}
.about {
  min-height: 720px;
  padding-top: 112px;
}
.contact:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 55px;
  background: var(--lime-deep);
}
.about__image-wrap {
  position: absolute;
  left: max(-92px, calc((100vw - 1440px) / 2 - 92px));
  top: 45px;
  width: 590px;
  height: 590px;
}
.about__image-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(66deg) scale(1.08);
  filter: drop-shadow(0 28px 34px rgba(21, 52, 11, 0.12));
}
.about__halo {
  position: absolute;
  z-index: 1;
  left: -115px;
  top: 50px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--mist);
}
.about__copy {
  position: relative;
  width: min(620px, calc(50% - 72px));
  margin-left: calc(50% + 4px);
  padding-left: 44px;
}
.about__copy h2 {
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.about__copy h2 strong,
.section-title h2 strong {
  color: var(--lime-deep);
}
.about__copy p {
  margin: 0 0 15px;
  color: #3f493a;
  font-size: 14px;
  line-height: 1.68;
}
.vertical-label,
.section-title__label {
  color: #70796b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.vertical-label {
  position: absolute;
  left: 0;
  top: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.about__leaf-accent {
  position: absolute;
  right: -80px;
  top: 410px;
  width: 190px;
  height: 190px;
  object-fit: contain;
  transform: rotate(-32deg);
  filter: saturate(1.15);
}
.section-title {
  position: relative;
  width: fit-content;
}
.section-title--center {
  margin: 0 auto;
}
.section-title--left {
  margin: 0;
}
.section-title h2 {
  margin: 0;
  font-size: 37px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-title__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}
.section-pagination {
  width: 300px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-pagination span {
  font-size: 10px;
  font-weight: 700;
}
.section-pagination > i {
  position: relative;
  width: 110px;
  height: 1px;
  overflow: hidden;
  background: #173f0a40;
}
.section-pagination > i b {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--lime-deep);
  transition: width 0.24s ease;
}
.testimonials {
  min-height: 690px;
  padding-top: 105px;
}
.testimonials > div:first-child,
.testimonial-grid,
.section-pagination--testimonials {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin-left: auto;
  margin-right: auto;
}
.testimonial-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card {
  min-height: 280px;
  padding: 27px;
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: center;
  gap: 26px;
  border-radius: 26px;
  background: #eff7e8f5;
}
.testimonial-card__portrait {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 6px solid var(--lime);
  border-top-width: 0;
  border-radius: 48px 48px 32px 32px;
  background: #fff;
}
.testimonial-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testimonial-card__copy {
  position: relative;
}
.testimonial-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
}
.testimonial-card p {
  margin: 0 0 17px;
  color: #3f493a;
  font-size: 11px;
  line-height: 1.58;
}
.quote-mark {
  position: absolute;
  top: -37px;
  right: -2px;
  color: var(--lime-deep);
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.stars {
  display: flex;
  gap: 4px;
  color: #e2a92d;
}
.section-pagination--testimonials {
  width: 300px;
}
.testimonials__tree {
  position: absolute;
  z-index: 1;
  top: -8px;
  right: -90px;
  width: 520px;
  height: 550px;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
}
.contact {
  min-height: 710px;
  padding-top: 110px;
}
.contact:before {
  top: 120px;
  right: calc((100% - min(1180px, calc(100% - 56px))) / 2 + 215px);
}
.contact-card {
  position: relative;
  z-index: 3;
  width: min(770px, calc(100% - 56px));
  margin: 60px auto 0;
  padding: 45px 72px 34px;
  border-radius: 24px;
  background: #eff7e8f7;
  box-shadow: 0 35px 75px #294b1c0f;
}
.contact-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-card__required-note {
  grid-column: 1 / -1;
  margin: 0 0 -4px;
  color: #53634c;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
}
.contact-card label {
  display: block;
}
.contact-card label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(118, 170, 37, 0.62);
  border-radius: 18px;
  outline: none;
  color: var(--ink);
  background: #ffffff1f;
  font-size: 11px;
  transition:
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.contact-card input {
  height: 43px;
  padding: 0 18px;
}
.contact-card textarea {
  min-height: 116px;
  padding: 14px 18px;
  resize: vertical;
}
.contact-card input:focus,
.contact-card textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 4px #95c83f29;
}
.contact-card__message {
  grid-column: 1 / -1;
}
.contact-card .button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 145px;
  margin-top: 10px;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 21px;
  margin: -2px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: transparent;
  font-size: 10px;
}
.form-status.is-visible {
  color: var(--forest);
}
.contact__plant {
  position: absolute;
  z-index: 4;
  left: max(20px, calc((100vw - 1170px) / 2 - 70px));
  bottom: 8px;
  width: 300px;
  height: 300px;
  object-fit: contain;
  transform: rotate(-8deg);
  filter: drop-shadow(0 25px 30px rgba(21, 52, 11, 0.14));
  pointer-events: none;
}
.footer {
  position: relative;
  z-index: 5;
  min-height: 440px;
  padding: clamp(56px, 5vw, 72px) 0 24px;
  overflow: hidden;
  border-radius: 72px 72px 0 0;
  color: #dcebd5;
  background: var(--forest-deep);
}
.footer:after {
  content: "";
  position: absolute;
  inset: auto -10% -65% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(149, 200, 63, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px #95c83f06,
    0 0 0 150px #95c83f05;
}
.footer__inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(245px, 1fr) minmax(190px, 0.72fr);
  align-items: start;
  gap: clamp(48px, 6vw, 84px);
}
.footer__brand {
  min-width: 0;
}
.footer__logo {
  width: 232px;
  height: 80px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(149, 200, 63, 0.24);
  border-radius: 18px;
  background: rgba(243, 248, 234, 0.96);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease;
}
.footer__logo:hover,
.footer__logo:focus-visible {
  border-color: rgba(149, 200, 63, 0.72);
  transform: translateY(-2px);
}
.footer__logo:focus-visible,
.socials a:focus-visible,
.footer__links a:focus-visible,
.footer__contact a:focus-visible,
.footer__copyright a:focus-visible {
  outline: 3px solid rgba(149, 200, 63, 0.78);
  outline-offset: 4px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__community-title {
  max-width: 20ch;
  margin: 28px 0 0;
  color: #f4faef;
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.24rem + 0.72vw, 1.9rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
}
.footer h3 {
  margin: 9px 0 24px;
  color: #f4faef;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer__links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #dcebd5;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  transition:
    color 0.2s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--lime);
  transform: translateX(4px);
}
.socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 235, 213, 0.15);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(244, 250, 239, 0.06);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.socials a:hover,
.socials a:focus-visible {
  color: var(--forest-deep);
  border-color: var(--lime);
  background: var(--lime);
  transform: translateY(-3px);
}
.footer__contact {
  max-width: 42ch;
  margin-top: 26px;
  display: grid;
  gap: 9px;
}
.footer__contact-item,
.footer__address {
  margin: 0;
  color: #dcebd5;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.62;
}
.footer__contact-item {
  width: fit-content;
  transition: color 0.2s ease;
}
.footer__contact-item:hover,
.footer__contact-item:focus-visible {
  color: var(--lime);
}
.footer__copyright {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bdd2b5;
  font-size: 0.8125rem;
  line-height: 1.65;
  letter-spacing: 0.015em;
  text-align: center;
}
.footer__copyright a {
  color: #dcf3ad;
  font-weight: 700;
  text-underline-offset: 3px;
}
.footer__copyright a:hover,
.footer__copyright a:focus-visible {
  color: var(--lime);
  text-decoration: underline;
}
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  min-width: 270px;
  padding: 14px 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.toast--visible {
  opacity: 1;
  transform: translate(-50%);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
*:focus-visible {
  outline: 3px solid rgba(149, 200, 63, 0.65);
  outline-offset: 3px;
}
@media (max-width: 1260px) {
  .growth-path {
    --growth-grid: min(1180px, calc(100% - 40px));
  }
  .growth-path__grid {
    gap: 18px;
  }
  .growth-card__content {
    padding-inline: 32px;
  }
  .site-header {
    height: 96px;
    padding: 18px 0;
  }
  .site-header__inner {
    width: var(--page);
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .site-header__inner::before {
    inset: -20px -0.9% -17px;
  }
  .header-brand {
    --brand-frame-width: 168px;
    --brand-frame-height: 56px;
    --brand-logo-width: 148px;
    --brand-logo-shift-x: 20px;
    border-right: 0;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: var(--page);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    border: 1px solid rgba(23, 63, 10, 0.1);
    border-radius: 24px;
    background: #fbfdf8;
    box-shadow: 0 24px 55px rgba(21, 52, 11, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.2s ease;
  }
  .site-nav--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .site-nav__link {
    min-height: 46px;
    padding: 0 14px 0 40px;
    justify-content: flex-start;
    border-radius: 12px;
  }
  .site-nav__link:after {
    display: none;
  }
  .site-nav__link:before {
    inset: 0;
  }
  .site-nav__link:focus-visible,
  .site-nav__link.is-active {
    color: var(--forest);
    background: var(--mist);
  }
  .site-nav__link.is-active:after {
    display: none;
  }
  .site-nav__link.is-active:before {
    inset: 0;
  }
  .site-nav__leaf {
    left: 15px;
  }
  .mobile-header-tools {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(23, 63, 10, 0.09);
  }
  .header-search--desktop,
  .account-button--desktop {
    display: none;
  }
  .header-search--mobile {
    width: 100%;
  }
  .account-button--mobile {
    padding: 0 13px;
    border-radius: 999px;
    background: var(--mist);
  }
  .header-actions {
    margin-left: auto;
    gap: 8px;
  }
  .cart-button,
  .menu-button {
    background: transparent;
    box-shadow: none;
  }
  .menu-button {
    display: inline-flex !important;
  }
}
@media (hover: hover) and (pointer: fine) and (max-width: 1260px) {
  .site-nav__link:hover {
    color: var(--forest);
    background: var(--mist);
    transform: translateX(3px);
  }
}
@media (max-width: 1050px) {
  :root {
    --page: min(900px, calc(100% - 40px));
  }
  .growth-path {
    --growth-grid: var(--page);
    min-height: auto;
    padding-bottom: 78px;
  }
  .growth-path__vine {
    top: -18px;
    left: -35px;
    width: 230px;
    height: 195px;
    transform: none;
  }
  .growth-path__vine--right {
    right: -35px;
    left: auto;
    transform: scaleX(-1);
  }
  .growth-path__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .growth-path__slot,
  .growth-path__slot--featured {
    padding-top: 0;
  }
  .growth-card,
  .growth-card--systems,
  .growth-card--workshops,
  .growth-card--supplies {
    min-height: 580px;
    transform: none;
  }
  .growth-path__slot:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }
  .site-nav {
    margin-left: 0;
  }
  .hero__side-note {
    display: none;
  }
  .hero__rail {
    padding-inline: 34%;
  }
  .about__image-wrap {
    left: -155px;
    width: 610px;
  }
  .about__copy {
    margin-left: 49%;
  }
  .testimonial-card {
    grid-template-columns: 135px 1fr;
    gap: 20px;
    padding: 24px;
  }
  .footer__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 1fr) minmax(170px, 0.74fr);
    gap: 36px;
  }
}
@media (max-width: 780px) {
  :root {
    --page: calc(100% - 34px);
  }
  .page-shell {
    background-size: 86px 100%;
  }
  .growth-path {
    --growth-grid: min(600px, calc(100% - 34px));
    padding: 54px 0 70px;
  }
  .growth-path__vine {
    top: -28px;
    left: -75px;
    width: 205px;
    opacity: 0.72;
  }
  .growth-path__vine--right {
    right: -75px;
    left: auto;
  }
  .growth-path__intro {
    width: calc(100% - 42px);
  }
  .growth-path__eyebrow {
    font-size: 11px;
    letter-spacing: 0.19em;
  }
  .growth-path h2 {
    font-size: clamp(43px, 11vw, 58px);
  }
  .growth-path__summary {
    font-size: 14px;
  }
  .growth-path__grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .growth-path__slot:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .growth-card,
  .growth-card--systems,
  .growth-card--workshops,
  .growth-card--supplies {
    min-height: 570px;
  }
  .site-header {
    height: 90px;
    padding: 16px 0;
  }
  .site-header__inner::before {
    inset: -19px -0.9% -16px;
  }
  .site-header__inner::after {
    border-radius: 16px;
  }
  .header-brand {
    --brand-frame-width: 156px;
    --brand-frame-height: 54px;
    --brand-logo-width: 143px;
  }
  .brand {
    min-width: auto;
  }
  .brand__mark {
    width: 36px;
    height: 36px;
  }
  .brand strong {
    font-size: 15px;
  }
  .site-nav {
    top: calc(100% + 8px);
    padding: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
    transform: translate(-50%, -8px);
  }
  .site-nav--open {
    transform: translate(-50%, 0);
  }
  .site-nav__link {
    padding: 0 12px 0 40px;
  }
  .header-actions {
    min-width: auto;
    gap: 8px;
  }
  .menu-button {
    display: inline-flex !important;
  }
  .hero {
    height: 715px;
  }
  .hero__copy {
    width: calc(100% - 34px);
    padding-top: 132px;
  }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(42px, 10.8vw, 62px);
    line-height: 1.04;
  }
  .hero__arch,
  .hero__rail {
    width: calc(100% - 34px);
  }
  .hero__arch {
    height: 270px;
  }
  .hero__plant-wrap {
    bottom: 61px;
    width: min(430px, 90vw);
    height: 380px;
  }
  .hero__rail {
    padding-inline: calc(50% - 150px);
  }
  .about {
    min-height: 1020px;
    padding-top: 590px;
  }
  .about__image-wrap {
    left: 50%;
    top: 30px;
    width: min(600px, 110vw);
    height: 560px;
    transform: translate(-50%);
  }
  .about__copy {
    width: min(500px, calc(100% - 48px));
    margin: 0 auto;
  }
  .about__leaf-accent {
    display: none;
  }
  .testimonials {
    min-height: 850px;
    padding-top: 130px;
  }
  .testimonials__tree {
    top: 5px;
    right: -175px;
    width: 430px;
    opacity: 0.5;
  }
  .testimonial-grid {
    margin-top: 62px;
    grid-template-columns: 1fr;
  }
  .testimonial-card:nth-child(2) {
    display: none;
  }
  .testimonial-card {
    min-height: 360px;
  }
  .contact {
    min-height: 830px;
    padding-top: 150px;
  }
  .contact-card {
    margin-top: 70px;
    padding: 42px 32px 30px;
  }
  .contact__plant {
    left: -70px;
    bottom: -5px;
    width: 280px;
    height: 280px;
  }
  .footer {
    padding-top: 58px;
    border-radius: 46px 46px 0 0;
  }
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .growth-path h2 {
    font-size: clamp(38px, 12vw, 50px);
  }
  .growth-path__summary {
    margin-top: 18px;
  }
  .growth-card__media,
  .growth-card--workshops .growth-card__media,
  .growth-card--supplies .growth-card__media {
    flex-basis: 265px;
  }
  .growth-card__content,
  .growth-card--workshops .growth-card__content,
  .growth-card--supplies .growth-card__content {
    padding: 18px 26px 27px;
  }
  .growth-card h3 {
    font-size: 30px;
  }
  .header-brand {
    --brand-frame-width: 144px;
    --brand-frame-height: 52px;
    --brand-logo-width: 137px;
  }
  .cart-button,
  .menu-button {
    width: 44px;
    height: 44px;
  }
  .site-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .mobile-header-tools {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .account-button--mobile {
    width: 100%;
  }
  .hero {
    height: 650px;
  }
  .hero__copy {
    padding-top: 122px;
  }
  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }
  .hero__plant-wrap {
    width: 345px;
    height: 330px;
  }
  .hero__arch {
    height: 235px;
  }
  .hero__rail {
    padding-inline: 25px;
    gap: 10px;
  }
  .hero__blur--right {
    right: -145px;
  }
  .about {
    min-height: 950px;
    padding-top: 510px;
  }
  .about__image-wrap {
    top: 10px;
    height: 490px;
  }
  .about__copy {
    padding-left: 28px;
  }
  .about__copy h2 {
    font-size: 38px;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .testimonial-card {
    min-height: 490px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .testimonial-card__portrait {
    width: 165px;
    height: 220px;
    margin: 0 auto;
  }
  .stars {
    justify-content: center;
  }
  .testimonials {
    min-height: 965px;
  }
  .quote-mark {
    right: 10px;
  }
  .contact-card form {
    grid-template-columns: 1fr;
  }
  .contact-card__message,
  .contact-card .button,
  .form-status {
    grid-column: 1;
  }
  .contact-card {
    width: calc(100% - 34px);
    padding-inline: 22px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
}

/* Shared desktop display-heading language, based on the hero title. */
@media (min-width: 1261px) {
  :is(
    .growth-path h2,
    .story-showcase h2,
    .how-it-works h2,
    .process-video h2,
    .grow-anywhere h2,
    .features-designed h2,
    .growable__intro h2,
    .grow-series-showcase h2,
    .about__copy h2,
    .section-title h2
  ) {
    color: var(--heading-ink);
    font-family: var(--heading-font);
    font-weight: 400;
  }
  :is(
    .growth-path h2,
    .story-showcase h2,
    .how-it-works h2,
    .process-video h2,
    .grow-anywhere h2,
    .features-designed h2,
    .growable__intro h2,
    .grow-series-showcase h2,
    .about__copy h2,
    .section-title h2
  )
    .section-heading__accent {
    color: var(--lime-deep);
    font-style: normal;
    font-weight: 800;
  }
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    :is(
      .growth-path h2,
      .story-showcase h2,
      .how-it-works h2,
      .process-video h2,
      .grow-anywhere h2,
      .features-designed h2,
      .growable__intro h2,
      .grow-series-showcase h2,
      .about__copy h2,
      .section-title h2
    )
      .section-heading__accent {
      background: var(--heading-accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
  }
  .growth-path h2 em {
    color: var(--heading-ink);
    font-style: normal;
    font-weight: 400;
  }
  .growth-card h3 {
    color: var(--forest);
    font-family: var(--heading-font);
    font-size: clamp(32px, 2.27vw, 38px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }
  .growth-card,
  .growth-card--workshops {
    min-height: 594px;
    height: 594px;
  }
  .growth-card--systems,
  .growth-card--supplies {
    transform: none;
  }
  .growth-card__content > p {
    color: #36502e;
    font-family: var(--heading-font);
    font-size: clamp(14px, 0.96vw, 16px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.025em;
  }
}

@media (min-width: 1261px) and (hover: hover) and (pointer: fine) {
  .growth-path__slot:hover .growth-card--systems,
  .growth-path__slot:focus-within .growth-card--systems,
  .growth-path__slot:hover .growth-card--workshops,
  .growth-path__slot:focus-within .growth-card--workshops,
  .growth-path__slot:hover .growth-card--supplies,
  .growth-path__slot:focus-within .growth-card--supplies {
    transform: translateY(-6px);
  }
}

@media (min-width: 1261px) {
  .growth-path {
    min-height: 0;
    padding: var(--section-space-base) 0 var(--section-space-tight);
  }
  .growth-path__grid {
    margin-top: var(--section-space-tight);
  }
  .story-showcase {
    min-height: 0;
    padding: var(--section-space-compact) 0;
  }
  .story-showcase__grid {
    margin-top: var(--section-space-tight);
  }
  .how-it-works {
    min-height: 0;
    padding: var(--section-space-base) 0;
  }
  .how-it-works__journey {
    margin-top: var(--section-space-standard);
  }
  .process-video {
    min-height: 0;
    padding: var(--section-space-standard) 0 var(--section-space-relaxed);
  }
  .grow-anywhere {
    min-height: 0;
    padding: var(--section-space-standard) 0;
  }
  .grow-anywhere__grid {
    margin-top: var(--section-space-standard);
  }
  .grow-anywhere-card {
    border-color: rgba(118, 170, 37, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf3 100%);
    box-shadow:
      0 18px 42px rgba(24, 67, 12, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }
  .grow-anywhere-card__media {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(118, 170, 37, 0.12);
    background: #eef3e8;
  }
  .grow-anywhere-card__media::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(248, 251, 244, 0.04),
      rgba(23, 63, 10, 0.065)
    );
  }
  .grow-anywhere-card__media > img {
    filter: saturate(0.84) contrast(1.03) brightness(0.98) sepia(0.04);
  }
  .grow-anywhere-card__leaf {
    display: none;
  }
  .features-designed {
    min-height: min(1052px, 72.65vw);
  }
  .features-designed__benefits {
    top: min(963px, 66.45vw);
  }
  .growable {
    min-height: min(860px, 51.44vw);
  }
  .growable__intro {
    top: min(48px, 2.87vw);
  }
  .growable__stage {
    top: min(240px, 14.35vw);
  }
  .grow-series-showcase {
    min-height: clamp(850px, 54vw, 920px);
  }
  .grow-series-showcase__pagination {
    bottom: 22px;
  }
  .about {
    min-height: 580px;
    padding-top: 60px;
  }
  .about__image-wrap {
    top: 20px;
    width: 540px;
    height: 540px;
  }
  .about__leaf-accent {
    top: 310px;
  }
  .testimonials {
    min-height: 530px;
    padding-top: 60px;
  }
  .testimonial-grid {
    margin-top: 44px;
  }
  .section-pagination--testimonials {
    margin-top: 24px;
  }
  .contact {
    min-height: 590px;
    padding-top: 64px;
  }
  .contact:before {
    top: 72px;
  }
  .contact-card {
    margin-top: 44px;
  }
  .footer {
    min-height: 0;
    padding: 32px 0 16px;
    border-radius: 52px 52px 0 0;
  }
  .footer__inner {
    gap: clamp(44px, 5vw, 72px);
  }
  .footer__logo {
    width: 190px;
    height: 60px;
    padding: 8px 13px;
    border-radius: 14px;
  }
  .footer__community-title {
    margin-top: 12px;
    font-size: clamp(1.35rem, 1.1rem + 0.42vw, 1.6rem);
    line-height: 1.16;
  }
  .footer h3 {
    margin: 4px 0 14px;
  }
  .footer__links {
    gap: 4px;
  }
  .footer__links a {
    min-height: 29px;
    font-size: 0.875rem;
  }
  .socials {
    margin-top: 10px;
    gap: 8px;
  }
  .socials a {
    width: 38px;
    height: 38px;
  }
  .footer__contact {
    margin-top: 12px;
    gap: 4px;
  }
  .footer__contact-item,
  .footer__address {
    font-size: 0.875rem;
    line-height: 1.45;
  }
  .footer__copyright {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 0.75rem;
    line-height: 1.45;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .growth-card,
  .growth-path__slot:hover .growth-card,
  .growth-path__slot:focus-within .growth-card {
    transform: none;
  }
  .story-card,
  .story-card:hover,
  .story-card:focus-within,
  .story-card__cta,
  .story-card__cta svg {
    transform: none;
  }
  .how-it-works__botanical.reveal,
  .how-it-works__botanical.reveal.is-visible,
  .how-it-works__connector,
  .how-it-works__journey.is-visible .how-it-works__connector,
  .how-step,
  .how-it-works__journey.is-visible .how-step,
  .how-step__number,
  .how-it-works__journey.is-visible .how-step__number {
    opacity: 1;
    transform: none;
  }
  .how-step__number,
  .how-it-works__journey.is-visible .how-step__number {
    transform: translateX(-50%);
  }
  .process-video__intro.reveal,
  .process-video__intro.reveal.is-visible,
  .process-video__media.reveal,
  .process-video__media.reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .process-video__play,
  .process-video__play:hover,
  .process-video__play:active {
    transform: translate(-50%, -50%);
  }
  .process-video__play.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
  }
  .how-step__card,
  .how-step__card:hover,
  .how-step__media > img,
  .how-step__card:hover .how-step__media > img,
  .how-step__number > span,
  .how-step__card:hover .how-step__number > span {
    transform: none;
  }
  .features-designed-card,
  .features-designed-card:hover,
  .features-designed-card__icon,
  .features-designed-card:hover .features-designed-card__icon,
  .growable-card,
  .growable-card:hover,
  .growable-card:focus-visible,
  .growable-card__arrow,
  .growable-card:hover .growable-card__arrow,
  .growable-card:focus-visible .growable-card__arrow,
  .growable-card__produce,
  .growable-card:hover .growable-card__produce,
  .growable-card:focus-visible .growable-card__produce,
  .grow-series-card__image,
  .grow-series-card:hover .grow-series-card__image,
  .grow-series-card:focus-within .grow-series-card__image,
  .grow-series-card__cart,
  .grow-series-card__cart:hover,
  .grow-series-card__favourite,
  .grow-series-card__favourite:hover,
  .grow-series-showcase__pagination > button,
  .grow-series-showcase__pagination > button:hover {
    transform: none;
  }
  .grow-series-card__image,
  .grow-series-card:hover .grow-series-card__image,
  .grow-series-card:focus-within .grow-series-card__image {
    transform: translateX(-50%);
  }
}

/* One uninterrupted desktop botanical canvas, anchored to How It Works / Video. */
@media (min-width: 1261px) {
  .site-botanical-continuum {
    --botanical-tile-height: 139.99vw;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background-color: #fbfcf8;
    background-image:
      linear-gradient(
        to bottom,
        rgba(251, 252, 248, 0.42) 0,
        rgba(251, 252, 248, 0) 90px,
        rgba(251, 252, 248, 0) calc(100% - 90px),
        rgba(251, 252, 248, 0.42) 100%
      ),
      url("./assets/growth-process-continuum-bg-light.webp");
    background-repeat: repeat-y, repeat-y;
    background-position: center top, center top;
    background-size:
      100% var(--botanical-tile-height),
      100% var(--botanical-tile-height);
  }

  .site-botanical-continuum
    > :is(
      .growth-process-flow,
      .grow-anywhere,
      .features-designed,
      .growable,
      .grow-series-showcase,
      .about,
      .testimonials,
      .contact
    ) {
    position: relative;
    z-index: 1;
    margin-top: 0;
    background-color: transparent;
    background-image: none;
  }

  .site-botanical-continuum > .growable::before,
  .site-botanical-continuum > .grow-series-showcase::before {
    content: none;
  }

  .site-botanical-continuum > .contact {
    isolation: isolate;
  }

  .site-botanical-continuum > .contact::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: clamp(430px, 36vw, 560px);
    height: clamp(455px, 37vw, 585px);
    pointer-events: none;
    background: radial-gradient(
      ellipse at 21% 72%,
      rgba(251, 252, 248, 1) 0 58%,
      rgba(251, 252, 248, 0.96) 68%,
      rgba(251, 252, 248, 0) 91%
    );
  }

  .site-botanical-continuum > .contact > div:first-child {
    position: relative;
    z-index: 2;
  }
}

/* Accessible structural hooks shared by the desktop navigation and mobile drawer. */
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 120;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(11, 38, 4, 0.24);
  font-size: 0.875rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
  transition:
    opacity 160ms ease-out,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav__navigation {
  display: contents;
}
.site-nav-scrim,
.site-nav__drawer-header,
.site-nav__icon {
  display: none;
}
.footer__disclosure {
  width: 100%;
  min-height: 33px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  pointer-events: none;
}
.footer__links-heading {
  margin: 9px 0 24px;
  color: #f4faef;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
}
.footer__disclosure > svg {
  display: none;
}
.footer__links-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: inherit;
}
@media (min-width: 1261px) {
  .footer__links-heading {
    margin: 4px 0 14px;
  }
}

/* Native-app mobile experience. Desktop rules above 780px remain unchanged. */
@media (max-width: 780px) {
  :root {
    --page: min(640px, calc(100% - 32px));
    --mobile-gutter: 16px;
    --mobile-section-space: 48px;
    --mobile-card-radius: 22px;
    --mobile-control: 48px;
    --mobile-header-height: 64px;
    --mobile-ease: cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 16px;
  }
  html {
    scroll-padding-top: calc(
      var(--mobile-header-height) + env(safe-area-inset-top, 0px) + 12px
    );
  }
  body {
    min-width: 320px;
    color: #172115;
    background: #fbfcf8;
    overscroll-behavior-y: none;
  }
  body.mobile-nav-open {
    overscroll-behavior: none;
  }
  .page-shell {
    overflow: clip;
    background: #fff;
  }
  #main-content {
    outline: none;
  }
  main > section[id],
  .site-botanical-continuum section[id] {
    scroll-margin-top: calc(
      var(--mobile-header-height) + env(safe-area-inset-top, 0px) + 12px
    );
  }
  .site-botanical-continuum {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background-color: #fbfcf8;
    background-image:
      linear-gradient(
        90deg,
        rgba(251, 252, 248, 0.96) 0%,
        rgba(251, 252, 248, 0.72) 16%,
        rgba(251, 252, 248, 0.72) 84%,
        rgba(251, 252, 248, 0.96) 100%
      ),
      url("./assets/growth-process-continuum-bg-light.webp");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% 1000px;
  }
  .site-botanical-continuum
    > :is(
      .growth-process-flow,
      .grow-anywhere,
      .features-designed,
      .growable,
      .grow-series-showcase,
      .about,
      .testimonials,
      .contact
    ) {
    position: relative;
    z-index: 1;
    min-height: 0;
    margin: 0;
    background-color: transparent;
    background-image: none;
  }
  .site-botanical-continuum > .growable::before,
  .site-botanical-continuum > .grow-series-showcase::before,
  .site-botanical-continuum > .contact::after {
    content: none;
  }

  .site-header,
  .site-header.site-header--scrolled {
    position: fixed;
    inset: 0 0 auto;
    z-index: 70;
    width: 100%;
    height: calc(
      var(--mobile-header-height) + env(safe-area-inset-top, 0px) + 8px
    );
    padding:
      max(6px, env(safe-area-inset-top, 0px))
      max(8px, env(safe-area-inset-right, 0px)) 0
      max(8px, env(safe-area-inset-left, 0px));
    transform: none;
  }
  .site-header__inner,
  .site-header--scrolled .site-header__inner {
    width: 100%;
    height: var(--mobile-header-height);
    min-height: var(--mobile-header-height);
    padding: 6px 8px 6px 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    overflow: visible;
    border: 1px solid rgba(118, 170, 37, 0.22);
    border-radius: 19px;
    background: rgba(248, 252, 244, 0.97);
    box-shadow:
      0 8px 24px rgba(23, 63, 10, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    isolation: auto;
  }
  .site-header__inner::before {
    content: none;
  }
  .site-header__inner::after,
  .site-header--scrolled .site-header__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0;
    border-radius: inherit;
    background: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.28),
      rgba(237, 247, 226, 0.08)
    );
    pointer-events: none;
  }
  .site-header__inner > * {
    z-index: 3;
  }
  .header-brand {
    --brand-frame-width: 132px;
    --brand-frame-height: 48px;
    --brand-logo-width: 128px;
    --brand-logo-shift-x: 0px;
    width: var(--brand-frame-width);
    height: var(--brand-frame-height);
    flex: 0 1 var(--brand-frame-width);
    overflow: hidden;
  }
  .header-brand img {
    width: var(--brand-logo-width);
    max-width: 100%;
    max-height: 46px;
    object-position: left center;
    transform: none;
  }
  .header-actions {
    position: relative;
    z-index: 73;
    flex: 0 0 auto;
    min-width: 92px;
    margin: 0;
    gap: 4px;
  }
  .header-search--desktop,
  .account-button--desktop {
    display: none;
  }
  .cart-button,
  .menu-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(118, 170, 37, 0.12);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 3px 9px rgba(23, 63, 10, 0.055);
  }
  .menu-button {
    display: inline-flex !important;
  }
  .cart-button span {
    top: 0;
    right: -1px;
    min-width: 17px;
    height: 17px;
    font-size: 0.625rem;
  }
  .cart-button .cart-button__dot {
    top: 4px;
    right: 3px;
  }
  .site-nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 78;
    width: 100vw;
    height: 100dvh;
    padding: 0;
    display: block;
    border: 0;
    background: rgba(9, 25, 5, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateZ(0);
    transition:
      opacity 200ms ease-out,
      visibility 0s linear 200ms;
  }
  .site-nav-scrim.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 220ms ease-out,
      visibility 0s linear;
  }
  #mobile-navigation-drawer.site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    width: min(88vw, 360px);
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding:
      max(14px, env(safe-area-inset-top, 0px))
      max(16px, env(safe-area-inset-right, 0px))
      max(18px, env(safe-area-inset-bottom, 0px)) 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid rgba(118, 170, 37, 0.24);
    border-radius: 26px 0 0 26px;
    color: var(--forest);
    background: #f9fcf5;
    box-shadow: -22px 0 56px rgba(9, 31, 4, 0.2);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    transition:
      transform 260ms var(--mobile-ease),
      visibility 0s linear 260ms;
  }
  #mobile-navigation-drawer.site-nav.site-nav--open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform 260ms var(--mobile-ease),
      visibility 0s linear;
  }
  .site-nav__drawer-header {
    min-height: 48px;
    padding: 0 0 8px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(23, 63, 10, 0.1);
  }
  .site-nav__drawer-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .site-nav__drawer-title svg {
    color: var(--lime-deep);
    transform: rotate(-15deg);
  }
  .site-nav__close {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(118, 170, 37, 0.2);
    border-radius: 50%;
    color: var(--forest);
    background: #fff;
    cursor: pointer;
  }
  .site-nav__navigation {
    min-height: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
  .site-nav__link {
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    justify-content: stretch;
    gap: 10px;
    border-radius: 15px;
    color: #40503b;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    transform: none;
  }
  .site-nav__link::after {
    display: none;
  }
  .site-nav__link::before,
  .site-nav__link.is-active::before {
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .site-nav__link.is-active {
    color: var(--forest);
    background: #eaf5dc;
  }
  .site-nav__link.is-active::before {
    border-color: rgba(118, 170, 37, 0.18);
    background: linear-gradient(90deg, #edf7df, #f7fbf1);
  }
  .site-nav__icon {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #568126;
    background: rgba(149, 200, 63, 0.12);
  }
  .site-nav__icon svg {
    width: 20px;
    height: 20px;
  }
  .site-nav__link > span:last-child {
    position: relative;
    z-index: 2;
  }
  .site-nav__leaf {
    right: 14px;
    left: auto;
    top: 50%;
    z-index: 3;
  }
  .mobile-header-tools {
    width: 100%;
    margin-top: 12px;
    padding: 16px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border-top: 1px solid rgba(23, 63, 10, 0.1);
  }
  .header-search--mobile {
    width: 100%;
  }
  .header-search__field {
    height: 52px;
    grid-template-columns: minmax(0, 1fr) 48px;
    border-radius: 16px;
    background: #fff;
  }
  .header-search input {
    font-size: 1rem;
  }
  .header-search button {
    width: 48px;
    height: 48px;
  }
  .account-button--mobile {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: 16px;
    background: #eef7e5;
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding:
      calc(
        var(--mobile-header-height) + env(safe-area-inset-top, 0px) + 40px
      )
      var(--mobile-gutter) 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.72), transparent 43%),
      #f1f7e8;
  }
  .hero__copy {
    order: 1;
    width: min(100%, 600px);
    padding: 0;
  }
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }
  .hero__side-note,
  .hero__orbit {
    display: none;
  }
  .hero__blur {
    z-index: 1;
    opacity: 0.28;
    filter: blur(8px) saturate(0.8);
  }
  .hero__blur--left {
    top: 250px;
    left: -105px;
    width: 180px;
    height: 180px;
  }
  .hero__blur--right {
    top: 185px;
    right: -90px;
    width: 160px;
    height: 160px;
  }
  .hero__arch {
    inset: auto 8px 78px;
    z-index: 1;
    width: auto;
    height: 230px;
    border-radius: 46% 46% 22px 22px;
    background: linear-gradient(180deg, #a2d653 0%, #8ec43a 100%);
    transform: none;
  }
  .hero__plant-wrap {
    position: relative;
    inset: auto;
    order: 2;
    z-index: 4;
    width: min(100%, 430px);
    height: clamp(300px, 92vw, 390px);
    margin: 8px auto 0;
    transform: none;
  }
  .hero__plant {
    filter: drop-shadow(0 22px 20px rgba(24, 55, 12, 0.2));
  }
  .hero__plant-wrap:hover .hero__plant {
    transform: none;
  }
  .hero__cta {
    bottom: 20px;
    min-width: 142px;
    min-height: 48px;
    padding-inline: 26px;
    font-size: 0.875rem;
  }
  .hero__rail {
    position: relative;
    inset: auto;
    order: 3;
    z-index: 5;
    width: min(100%, 430px);
    height: 64px;
    margin: -2px auto 0;
    padding: 0 16px;
    gap: 10px;
    border-radius: 22px;
    transform: none;
  }
  .round-button,
  .hero__rail .round-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .rail-number {
    font-size: 0.75rem;
  }
  .rail-line {
    width: min(92px, 24vw);
  }
  .button {
    min-height: 48px;
    font-size: 0.875rem;
    touch-action: manipulation;
  }

  .growth-path {
    --growth-grid: var(--page);
    min-height: 0;
    padding: var(--mobile-section-space) 0;
  }
  .growth-path__vine {
    top: -26px;
    left: -66px;
    width: 150px;
    height: 150px;
    opacity: 0.42;
  }
  .growth-path__vine--right {
    right: -66px;
    left: auto;
  }
  .growth-path__intro {
    width: var(--page);
  }
  .growth-path__eyebrow {
    min-height: 24px;
    margin-bottom: 12px;
    gap: 8px;
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
  }
  .growth-path h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.25rem, 10vw, 3rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }
  .growth-path h2 em {
    color: var(--heading-ink);
    font-style: normal;
    font-weight: 400;
  }
  .growth-path h2 .section-heading__accent {
    color: var(--lime-deep);
    font-weight: 800;
  }
  .growth-path__summary {
    max-width: 36ch;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .growth-path__grid {
    width: var(--page);
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .growth-path__slot,
  .growth-path__slot--featured,
  .growth-path__slot:last-child {
    width: 100%;
    padding: 0;
    grid-column: auto;
    justify-self: stretch;
  }
  .growth-card,
  .growth-card--systems,
  .growth-card--workshops,
  .growth-card--supplies {
    min-height: 0;
    height: auto;
    border-radius: var(--mobile-card-radius);
    transform: none;
    box-shadow: 0 12px 30px rgba(20, 49, 12, 0.09);
  }
  .growth-card__media,
  .growth-card--workshops .growth-card__media,
  .growth-card--supplies .growth-card__media {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    margin: 10px 10px 0;
    overflow: hidden;
    border-radius: 17px;
    background: #f0f6e9;
  }
  .growth-card__image--contain,
  .growth-card__image--cover {
    object-fit: cover;
    object-position: center;
  }
  .growth-card--systems .growth-card__image,
  .growth-card--supplies .growth-card__image {
    padding: 0;
    object-fit: contain;
    transform: scale(1.08);
    transform-origin: center;
  }
  .growth-card__icon,
  .growth-card--workshops .growth-card__icon {
    top: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
  }
  .growth-card__content,
  .growth-card--workshops .growth-card__content,
  .growth-card--supplies .growth-card__content {
    padding: 20px;
  }
  .growth-card__detail-icon {
    display: none;
  }
  .growth-card h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.05;
  }
  .growth-card h3 span {
    display: inline;
  }
  .growth-card__rule {
    margin: 14px 0 12px;
  }
  .growth-card__content > p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.55;
  }
  .growth-card__cta {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 16px;
    justify-content: space-between;
    border-radius: 14px;
    background: #edf6e4;
    font-size: 0.9375rem;
  }
  .growth-card__botanical {
    right: -28px;
    bottom: -32px;
    width: 128px;
    height: 150px;
    opacity: 0.15;
  }

  .story-showcase {
    --story-grid: var(--page);
    min-height: 0;
    padding: var(--mobile-section-space) 0;
  }
  .story-showcase__botanical {
    opacity: 0.4;
    object-fit: cover;
    object-position: center top;
  }
  .story-showcase__blur {
    display: none;
  }
  .story-showcase__intro {
    width: var(--page);
  }
  .story-showcase__eyebrow {
    min-height: 24px;
    font-size: 1rem;
  }
  .story-showcase h2 {
    width: auto;
    margin-top: 10px;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.03;
    text-wrap: balance;
  }
  .story-showcase__title-leaf {
    top: -8px;
    right: 0;
  }
  .story-showcase__mascots {
    width: min(290px, 82vw);
    height: auto;
    margin-top: 10px;
  }
  .story-showcase__copy {
    max-width: 38ch;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .story-showcase__copy br {
    display: none;
  }
  .story-showcase__grid {
    width: var(--page);
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-card {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--mobile-card-radius);
  }
  .story-card::before,
  .story-card::after {
    content: none;
  }
  .story-card__art,
  .story-card--hydrokit .story-card__art {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(1.02);
  }
  .story-card__content {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 20px;
    background: linear-gradient(180deg, #eff7e8 0%, #f8fbf4 100%);
  }
  .story-card__pill {
    min-height: 36px;
    max-width: 100%;
    padding: 0 12px 0 8px;
    gap: 8px;
    font-size: 0.75rem;
  }
  .story-card__pill-icon {
    width: 24px;
    height: 24px;
  }
  .story-card h3 {
    margin-top: 18px;
    font-size: 1.875rem;
    line-height: 1.05;
  }
  .story-card h3 span,
  .story-card__content > p span {
    display: inline;
  }
  .story-card__rule {
    margin: 15px 0 13px;
  }
  .story-card__content > p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .story-card__cta {
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 1rem;
  }
}
