* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2420;
  --muted: #55615a;
  --accent: #2e6b4f;
  --accent-dark: #1e4c37;
  --paper: #f7f4ef;
  --soft: #e7ede6;
  --sun: #f3d37a;
  --line: #d3d7cf;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.sidebar .cta-link {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: var(--soft);
}

.section-title {
  font-size: 34px;
  line-height: 1.2;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-wrap {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  background: url("../images/hero-garden.svg") center/cover no-repeat;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.split {
  display: flex;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 140px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  font-style: italic;
}

.pricing-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.footer {
  padding: 32px 8vw;
  background: #ffffff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  min-width: 160px;
}

.metric strong {
  font-size: 22px;
  display: block;
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sidebar .cta-link {
    margin-top: 0;
  }

  .hero-wrap,
  .split,
  .split.reverse {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 6vw;
  }

  .section-title {
    font-size: 28px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
