:root {
  --red: #e83f4b;
  --red-dark: #bd2634;
  --red-soft: #ffcccc;
  --green: #46543b;
  --green-mid: #718f5e;
  --green-light: #d5ffb3;
  --cream: #f8f3e8;
  --paper: #fffdf8;
  --ink: #252d20;
  --muted: #697064;
  --line: rgba(70, 84, 59, 0.16);
  --orange: #e9823e;
  --radius: 24px;
  --shadow: 0 28px 70px rgba(55, 68, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 10vw, 7.4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 5px;
}

.brand strong {
  color: var(--green);
  font-size: 1.07rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 30px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--red);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.78rem;
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(232, 63, 75, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(189, 38, 52, 0.3);
}

.button-secondary,
.button-outline {
  color: var(--green);
  border-color: var(--line);
  background: transparent;
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 4% 15%, rgba(255, 204, 204, 0.62), transparent 28%),
    linear-gradient(145deg, #fffdf8 0%, #f8f3e8 100%);
}

.hero::before {
  position: absolute;
  top: -110px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(70, 84, 59, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin-bottom: 19px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  display: inline-block;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 750;
}

.text-link span {
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
}

.hero-note p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.45;
}

.hero-note p span {
  color: var(--muted);
}

.avatar-pair {
  min-width: 74px;
  display: flex;
}

.avatar-pair span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 0.77rem;
  font-weight: 800;
}

.avatar-pair span + span {
  margin-left: -10px;
  background: var(--red);
}

.hero-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #cce9f6 0 42%, #a8c98a 42% 52%, #657d50 52% 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::after {
  position: absolute;
  inset: 42% 0 auto;
  height: 70px;
  background: linear-gradient(7deg, #849f68 48%, transparent 50%);
  content: "";
}

.sun {
  position: absolute;
  top: 58px;
  right: 55px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff3bb;
  box-shadow: 0 0 0 18px rgba(255, 243, 187, 0.19);
}

.field-label {
  position: absolute;
  z-index: 6;
  top: 28px;
  left: 28px;
  display: grid;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 15px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  line-height: 1.25;
}

.field-label span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-label strong {
  font-size: 1.18rem;
}

.field-row {
  position: absolute;
  z-index: 2;
  right: -15%;
  left: -15%;
  height: 74px;
  border-radius: 50%;
  border-top: 24px solid #35452f;
  transform: rotate(-7deg);
}

.row-one { bottom: 155px; }
.row-two { bottom: 90px; }
.row-three { bottom: 25px; }
.row-four { bottom: -40px; }

.field-row::before,
.field-row::after {
  position: absolute;
  top: -31px;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 10%;
  background: var(--red);
  box-shadow: 72px 5px 0 var(--red), 148px -4px 0 var(--red), 222px 5px 0 var(--red), 295px -3px 0 var(--red), 367px 4px 0 var(--red), 440px -5px 0 var(--red);
  content: "";
  transform: rotate(45deg);
}

.field-row::before { left: 7%; }
.field-row::after { left: 52%; }

.strawberry {
  position: absolute;
  z-index: 5;
}

.strawberry img {
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(49, 62, 39, 0.2));
}

.strawberry-one {
  top: 150px;
  left: 25%;
}

.strawberry-two {
  top: 225px;
  right: 12%;
  transform: scale(0.72) rotate(12deg);
}

.visual-caption {
  position: absolute;
  z-index: 6;
  right: 25px;
  bottom: 22px;
  margin: 0;
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.quick-facts {
  color: white;
  background: var(--green);
}

.facts-grid {
  display: grid;
}

.facts-grid > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.fact-number {
  color: var(--green-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.facts-grid p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.facts-grid strong {
  font-size: 0.93rem;
}

.section {
  padding: 94px 0;
}

.split-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 46px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.06rem;
}

.benefit-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.benefit-card.featured {
  color: white;
  border-color: transparent;
  background: var(--red);
}

.benefit-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.benefit-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.card-index {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.berry-mark {
  position: absolute;
  top: -46px;
  right: -22px;
  width: 165px;
  height: 190px;
  border: 2px solid rgba(255, 255, 255, 0.21);
  border-radius: 54% 46% 50% 50%;
  transform: rotate(-18deg);
}

.berry-mark::after {
  position: absolute;
  top: 40px;
  left: 33px;
  width: 5px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 28px -11px 0 rgba(255, 255, 255, 0.55), 56px 4px 0 rgba(255, 255, 255, 0.55), 12px 34px 0 rgba(255, 255, 255, 0.55), 48px 41px 0 rgba(255, 255, 255, 0.55), 80px 29px 0 rgba(255, 255, 255, 0.55), 25px 72px 0 rgba(255, 255, 255, 0.55), 67px 76px 0 rgba(255, 255, 255, 0.55);
  content: "";
}

.produce {
  background: var(--cream);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.produce-grid {
  display: grid;
  gap: 14px;
}

.produce-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 22px;
  background: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.produce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(55, 68, 45, 0.08);
}

.produce-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.produce-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 16px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 1.7rem;
}

.green .produce-icon,
.bean .produce-icon,
.leaf .produce-icon {
  color: var(--green);
  background: #dce9d2;
}

.orange .produce-icon,
.harvest .produce-icon {
  color: var(--orange);
  background: #fbe3d2;
}

.produce-icon.pod {
  width: 68px;
  border-radius: 60% 20% 60% 20%;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  transform: rotate(-8deg);
}

.produce-icon.carrot {
  position: relative;
  width: 24px;
  height: 52px;
  margin-left: 12px;
  border-radius: 35% 35% 65% 65%;
  background: var(--orange);
  transform: rotate(20deg);
}

.produce-icon.carrot::before {
  position: absolute;
  top: -15px;
  left: -8px;
  width: 32px;
  height: 23px;
  border-radius: 70% 10%;
  background: var(--green-mid);
  content: "";
}

.availability-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.trust {
  padding-top: 0;
  background: var(--cream);
}

.trust-panel {
  display: grid;
  gap: 40px;
  padding: 46px 30px;
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(213, 255, 179, 0.13), transparent 27%),
    var(--green);
}

.trust-copy {
  max-width: 650px;
}

.trust-copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.trust-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

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

.light-link {
  margin-top: 16px;
  color: white;
}

.quote-card {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-mark {
  color: var(--green-light);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
}

.quote-card blockquote {
  margin: 20px 0;
  font-size: 1.28rem;
  font-weight: 650;
  line-height: 1.35;
}

.quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 7px;
}

.steps p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.payment-marks {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.payment-marks span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.payment-marks img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.final-cta {
  padding: 76px 0;
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 204, 204, 0.18), transparent 28%),
    var(--red);
}

.cta-inner {
  display: grid;
  gap: 28px;
  align-items: end;
}

.cta-inner h2 {
  max-width: 720px;
  margin-bottom: 14px;
}

.cta-inner p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-light {
  color: var(--red-dark);
  background: white;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  padding: 66px 0 24px;
  color: white;
  background: #303a29;
}

.footer-main {
  display: grid;
  gap: 40px;
}

.footer-brand {
  align-self: start;
}

.footer-brand img {
  width: 55px;
  height: 55px;
}

.footer-brand strong,
.footer-brand small {
  color: white;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--green-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

@media (min-width: 620px) {
  .container {
    width: min(1180px, calc(100% - 64px));
  }

  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .facts-grid > div {
    padding: 26px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .facts-grid > div:first-child {
    padding-left: 0;
  }

  .facts-grid > div:last-child {
    border-right: 0;
  }

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

  .steps li {
    grid-template-columns: 65px 1fr;
    padding: 34px 0;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-main .footer-column:last-child {
    grid-column: 2;
  }
}

@media (min-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
  }

  .main-nav {
    display: flex;
  }

  .hero {
    padding: 80px 0 74px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    gap: 62px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .strawberry-one {
    top: 175px;
    left: 30%;
  }

  .strawberry-two {
    top: 265px;
  }

  .section {
    padding: 130px 0;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 62px;
  }

  .benefit-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }

  .benefit-card {
    min-height: 360px;
    padding: 36px;
  }

  .produce-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust {
    padding-top: 0;
  }

  .trust-panel {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    min-height: 600px;
    align-items: center;
    padding: 70px;
  }

  .cta-inner {
    grid-template-columns: 1fr auto;
  }

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

  .footer-main .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .header-inner {
    min-height: 76px;
  }

  .brand small {
    display: none;
  }

  .button-small {
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .strawberry-one {
    left: 20%;
  }

  .strawberry-two {
    right: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
