:root {
  --ink: #0a302d;
  --ink-soft: #38524f;
  --green: #77d42f;
  --green-dark: #164c3d;
  --green-pale: #edf7e8;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: rgba(10, 48, 45, 0.12);
  --shadow: 0 28px 70px rgba(10, 48, 45, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(10, 48, 45, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand > span > span {
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  font-weight: 650;
}

.nav > a:not(.button) {
  position: relative;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.nav > a:not(.button):hover::after,
.nav > a:not(.button):focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green);
  color: #0a2e24;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(119, 212, 47, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #84df3b;
  box-shadow: 0 14px 30px rgba(119, 212, 47, 0.3);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 15%, rgba(139, 210, 235, 0.52), transparent 34%),
    linear-gradient(180deg, #eef7f8 0%, #fbfaf5 56%, #f5ead0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(251, 250, 245, 0), rgba(251, 250, 245, 0.1));
  pointer-events: none;
  z-index: -1;
}

.hero-visual {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: -2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 46%;
  background: linear-gradient(180deg, #fbfaf5 8%, rgba(251, 250, 245, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 64px;
  align-items: start;
  padding-top: 76px;
  padding-bottom: 130px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 8.2vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--green);
}

.hero-pair {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-pair strong {
  color: var(--ink);
  font-weight: 850;
}

.hero-pair span {
  color: var(--green);
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.14;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.hero-points > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.point-icon {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.hero-points p {
  margin: 0;
}

.hero-points strong,
.hero-points span:not(.point-icon) {
  display: block;
}

.hero-points strong {
  font-size: 0.92rem;
}

.hero-points p span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.scribble {
  width: max-content;
  margin: 90px 0 0;
  padding: 8px 18px 14px 0;
  border-bottom: 4px solid var(--green);
  color: var(--ink);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  transform: rotate(-5deg);
  text-shadow:
    0 1px 3px rgba(251, 250, 245, 0.9),
    0 0 18px rgba(251, 250, 245, 0.7);
}

.offer-card {
  margin-top: 4px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card-kicker {
  margin: 0 0 2px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-card h2,
.section-heading h2,
.story-copy h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.offer-card h2 {
  font-size: 2rem;
}

.offer-card > p:not(.card-kicker) {
  margin: 8px 0 22px;
  color: var(--ink-soft);
}

.price-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px 12px;
  align-items: end;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(120deg, #f5f8ef, #ebf3e4);
}

.price-box > span {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  font-weight: 760;
}

.price-box strong {
  font-size: 1.72rem;
  line-height: 1;
}

.price-box small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

#bid-form {
  display: grid;
  gap: 8px;
}

#bid-form label {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 760;
}

#bid-form input,
#bid-form textarea {
  width: 100%;
  border: 1px solid #ced8d6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

#bid-form input {
  height: 50px;
  padding: 0 14px;
}

#bid-form textarea {
  min-height: 106px;
  padding: 12px 14px;
  resize: vertical;
}

#bid-form input:focus,
#bid-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(119, 212, 47, 0.15);
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button-submit {
  width: 100%;
  margin-top: 10px;
  border-radius: 12px;
}

.button-submit:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

.form-note,
.form-status,
.noscript {
  margin: 8px 0 0;
  font-size: 0.76rem;
}

.form-note {
  color: var(--ink-soft);
  text-align: center;
}

.form-status {
  min-height: 0;
  white-space: pre-line;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #24661f;
}

.form-status.is-error {
  color: #9f312b;
}

.noscript {
  padding: 12px;
  border-radius: 10px;
  background: #fff4d7;
}

.noscript a {
  text-decoration: underline;
}

.section {
  padding-top: 94px;
  padding-bottom: 86px;
}

.leaf-divider {
  width: min(calc(100% - 48px), 560px);
  margin: -26px auto 58px;
}

.leaf-divider img {
  width: 100%;
  height: auto;
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.story-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-grid article {
  padding: 36px 26px;
  text-align: center;
}

.benefit-grid article + article {
  border-left: 1px solid var(--line);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green-pale);
  font-size: 2rem;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 0;
  font-size: 1.02rem;
}

.benefit-grid p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.45fr);
  min-height: 430px;
  margin-bottom: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #f3f8ef, #f8f8f0);
  box-shadow: 0 22px 50px rgba(10, 48, 45, 0.08);
}

.story-image {
  min-height: 420px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
}

.story-copy > p:not(.eyebrow):not(.story-quote) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.story-quote {
  width: max-content;
  max-width: 100%;
  margin: 34px 0 0 auto;
  padding-bottom: 10px;
  border-bottom: 4px solid var(--green);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  transform: rotate(-3deg);
}

.cta {
  margin-bottom: 96px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.cta-leaves {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cta-leaves::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(115deg, rgba(10, 48, 45, 0.93) 38%, rgba(22, 76, 61, 0.74)),
    url("leaves-bg.jpg");
  background-size: cover;
  background-position: center;
}

.cta .eyebrow {
  color: #a8e57c;
}

.cta h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.04;
}

.cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 54px 0 48px;
  background: #083b35;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  gap: 64px;
  align-items: end;
}

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

.footer-grid > div:first-child > p {
  margin: 10px 0 0 48px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-grid nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: var(--green);
}

.legal {
  display: flex;
  gap: 28px;
  white-space: nowrap;
}

.legal p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .scribble {
    margin-top: 48px;
  }

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

  .benefit-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .legal {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .nav > a:not(.button) {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    height: 36%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 76px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scribble {
    margin-top: 54px;
  }

  .offer-card {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

  .story {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-image {
    min-height: 330px;
    max-height: 390px;
  }

  .story-copy {
    padding: 42px 32px 48px;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }

  .legal {
    grid-column: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .brand {
    font-size: 1.3rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav {
    gap: 10px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.82rem;
  }

  .hero-grid {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .hero-lead {
    font-size: 1.55rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .scribble {
    color: var(--ink);
    text-shadow: none;
    margin-top: 38px;
  }

  .offer-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .price-box {
    grid-template-columns: 1fr;
  }

  .price-box small {
    margin-top: 4px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 66px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .benefit-grid article + article,
  .benefit-grid article:nth-child(3),
  .benefit-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story {
    margin-bottom: 70px;
    border-radius: 24px;
  }

  .story-image {
    min-height: 280px;
  }

  .story-copy {
    padding: 34px 24px 42px;
  }

  .story-quote {
    margin-left: 0;
  }

  .cta {
    margin-bottom: 70px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .cta .button {
    width: 100%;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid > div:first-child > p {
    margin-left: 0;
  }

  .legal {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .brand > span {
    font-size: 1.15rem;
  }

  .button-small {
    padding-inline: 12px;
  }

  .hero h1 {
    font-size: 2.95rem;
  }

  .offer-card {
    padding-inline: 16px;
  }
}
