* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background: #f6f5f1;
  line-height: 1.6;
}

a {
  color: #1f2a1f;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #f0efe9;
  border-bottom: 1px solid #d7d4c9;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #4f5a4f;
  border: 1px solid #c9c4b7;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8f7f2;
}

.main {
  width: 100%;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: #ffffff;
}

.section.tonal {
  background: #e8efe7;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: #3a463a;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #355b3e;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #f0efe9;
  color: #1f2a1f;
  border: 1px solid #c9c4b7;
}

.inline-link {
  text-decoration: underline;
}

.image-frame {
  background-color: #dfe6d7;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #cfd7c9;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1504215680853-026ed2a45def?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d9d3c8;
  align-items: center;
  flex-wrap: wrap;
}

.card img {
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: #21452a;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8efe7;
  font-size: 0.85rem;
  color: #2d4d33;
}

.testimonial {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid #d9d3c8;
}

.form-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #d9d3c8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c4b7;
  font-family: inherit;
  font-size: 1rem;
  background: #f9f8f5;
}

.footer {
  background: #f0efe9;
  padding: 40px 6%;
  border-top: 1px solid #d7d4c9;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4f5a4f;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #ffffff;
  border: 1px solid #d9d3c8;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  bottom: 110px;
  right: 24px;
  padding: 12px 18px;
  background: #2d5a38;
  color: #ffffff;
  border-radius: 999px;
  z-index: 8;
  font-weight: 600;
}

.note {
  font-size: 0.95rem;
  color: #3b463b;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
  }
}
