* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a21;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1e5a3e;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6b746d;
  border: 1px solid #d2d8d3;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #fff;
}

.hero {
  background-color: #e6efe8;
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 90px 0 110px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  background-color: #2d6a4f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background-color: #ffffff;
  color: #2d6a4f;
  border: 1px solid #cdd9d1;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section.soft {
  background-color: #f0f4f1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 360px;
}

.split .media {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #dfe6e1;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame.tall {
  height: 420px;
}

.img-frame.medium {
  height: 320px;
}

.img-frame.small {
  height: 220px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-bg {
  background-color: #dde6dc;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f2a21;
}

.story-panel {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 30px;
  max-width: 620px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1e5a3e;
}

.pill {
  background-color: #e6efe8;
  color: #1e5a3e;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonials-wrap {
  margin-top: 24px;
}

.quote {
  background-color: #f7f4ee;
  border-left: 4px solid #2d6a4f;
  padding: 16px 18px;
  border-radius: 12px;
  flex: 1 1 260px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd7d0;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  background-color: #1f2a21;
  color: #f3f6f2;
  padding: 40px 0;
  margin-top: auto;
}

.footer a {
  color: #c8e4d4;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer small {
  color: #b7c4bb;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.page-hero {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-hero .split {
  align-items: flex-start;
}

.legal {
  max-width: 760px;
}

.notice {
  background-color: #fff7e6;
  border-radius: 14px;
  padding: 16px;
}

.list {
  padding-left: 18px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
