:root {
  color-scheme: light;
  --ink: #102018;
  --muted: #617067;
  --line: #dfe7de;
  --paper: #f7faf5;
  --panel: #ffffff;
  --forest: #112f22;
  --green: #2f8757;
  --leaf: #b7e6b7;
  --gold: #d9a642;
  --rose: #d56875;
  --shadow: 0 20px 54px rgba(17, 47, 34, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(183, 230, 183, .45), transparent 440px),
    radial-gradient(circle at 85% 10%, rgba(217, 166, 66, .23), transparent 19rem),
    radial-gradient(circle at 5% 30%, rgba(213, 104, 117, .16), transparent 18rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(223, 231, 222, .8);
  background: rgba(247, 250, 245, .9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--forest), var(--green));
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a:hover { color: var(--forest); }

main { overflow: hidden; }
.hero, .section, footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
  padding: clamp(52px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  line-height: .94;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}
.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.primary {
  color: white;
  background: linear-gradient(135deg, var(--forest), var(--green));
  box-shadow: 0 12px 30px rgba(17, 47, 34, .2);
}
.secondary {
  border: 1px solid var(--line);
  color: var(--forest);
  background: rgba(255, 255, 255, .82);
}

.store-preview {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(17, 47, 34, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
}
.preview-top {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.preview-top span {
  width: 11px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--line);
}
.preview-top strong { margin-left: auto; }
.preview-hero {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .72)),
    radial-gradient(circle at 20% 20%, rgba(217, 166, 66, .65), transparent 9rem),
    linear-gradient(135deg, #21382a, #7c4b40);
}
.preview-hero p, .preview-hero h2 { margin: 0; }
.preview-hero span { color: rgba(255, 255, 255, .82); font-weight: 800; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.preview-grid div {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.preview-grid strong, .preview-grid span { display: block; }
.preview-grid span { color: var(--muted); font-size: 12px; font-weight: 800; }

.section {
  padding: clamp(54px, 8vw, 92px) 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
.benefit-grid, .package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.benefit-grid article, .package-grid article, .process, .intake {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(17, 47, 34, .07);
}
.benefit-grid article, .package-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.benefit-grid p, .package-grid p { margin: 0; color: var(--muted); }
.band {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .52);
}
.package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.package-grid .featured {
  border-color: rgba(47, 135, 87, .35);
  box-shadow: var(--shadow);
}
.promo {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f7ead2;
  color: #8b5f15 !important;
  font-size: 13px;
  font-weight: 900;
}
.price {
  color: var(--forest) !important;
  font-size: 34px;
  font-weight: 950;
}
.price span { color: var(--muted); font-size: 15px; }
ul, ol { margin: 0; padding-left: 20px; }
li { margin: 8px 0; }

.process {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 28px;
}
.process code {
  padding: 1px 5px;
  border-radius: 4px;
  background: #edf4ed;
  color: var(--green);
  font-weight: 900;
}

.intake {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  padding: 28px;
}
.intake p { color: var(--muted); }
.success-message {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(47, 135, 87, .35);
  border-radius: 8px;
  color: var(--forest) !important;
  background: #e9f7ed;
  font-weight: 850;
}
form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
}
textarea {
  min-height: 96px;
  resize: vertical;
}
label:has(textarea), form button { grid-column: 1 / -1; }
form button { width: fit-content; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 48px;
  color: var(--muted);
}
footer strong { color: var(--forest); }

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }
  nav { justify-content: flex-start; }
  .hero, .process, .intake {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .benefit-grid, .package-grid, form {
    grid-template-columns: 1fr;
  }
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    flex-direction: column;
  }
}
