:root {
  --forest-900: #0f1c17;
  --forest-700: #1c2f27;
  --forest-500: #2f4a3d;
  --leaf-500: #5a7b5f;
  --leaf-300: #8faf8f;
  --sand-200: #e8efe7;
  --stone-100: #f6f7f4;
  --sun-200: #f6e6bf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--forest-900);
  background: var(--stone-100);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--forest-700);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e0e6e0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #3f5348;
  background: var(--sand-200);
  padding: 4px 8px;
  border-radius: 999px;
}

.section {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.tint {
  background: var(--sand-200);
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-image {
  background: var(--leaf-300);
  padding: 12px;
  border-radius: 18px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.headline {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

.subline {
  font-size: 1.1rem;
  margin: 0;
  color: #314338;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest-700);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn.light {
  background: transparent;
  color: var(--forest-700);
  border: 1px solid var(--forest-500);
}

.btn:hover,
.btn:focus {
  opacity: 0.9;
  text-decoration: none;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e1e7e1;
}

.card .price {
  font-weight: 700;
  font-size: 1.2rem;
}

.divider {
  height: 1px;
  background: #d8e0d8;
  width: 100%;
}

.inline-cta {
  color: var(--forest-500);
  font-weight: 600;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e1e7e1;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8cf;
  font-size: 1rem;
  background: #ffffff;
}

.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: flex-end;
  margin: 0 6% 32px auto;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #d4ddd4;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #ffffff;
  border-top: 1px solid #e0e6e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #3f5348;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #d4ddd4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.hero-banner {
  background: var(--forest-700);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
}

.hero-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.note-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.note {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e1e7e1;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sticky-cta {
    align-self: center;
  }
}
