* {
  box-sizing: border-box;
}

:root {
  --sand: #f4f1ea;
  --leaf: #2f5b3a;
  --moss: #3f7a52;
  --soil: #3a2d26;
  --sky: #e7f0f4;
  --sun: #f3d69b;
  --ink: #1b1b1b;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--sand);
  border-bottom: 1px solid #e2ddd2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d4f3e;
  background: #efe6d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: #e7dfd2;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b3a2b;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 35, 27, 0.55);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 90px 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 32px;
  border-radius: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0;
  line-height: 1.15;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--leaf);
  color: #ffffff;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  background: #f1ede6;
  color: var(--ink);
  border: 1px solid #d8d0c2;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sky);
}

.section.dark {
  background: var(--soil);
  color: #ffffff;
}

.section.bg-garden {
  background-image: url("https://images.unsplash.com/photo-1465101046530-73398c7f28ca?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #283726;
  position: relative;
  color: #ffffff;
}

.section.bg-garden::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 41, 30, 0.6);
}

.section.bg-garden > .container {
  position: relative;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #efe6d7;
  color: #5d4f3e;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature span {
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
  margin-top: 8px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e6e0d6;
}

.card-image {
  background: #e0eadf;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.quote {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border-left: 5px solid var(--sun);
}

.grid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: #1f3c2b;
  color: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.grid-cta.spaced {
  margin-top: 24px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e6e0d6;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d0c7;
  font-size: 1rem;
}

.form-status {
  font-size: 0.95rem;
  color: var(--moss);
  min-height: 20px;
}

.footer {
  margin-top: auto;
  background: var(--sand);
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #5c5549;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--leaf);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  width: min(360px, 90vw);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid #e6e0d6;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.is-hidden {
  display: none;
}

.wide-image {
  border-radius: 18px;
  overflow: hidden;
  background: #dfe8db;
}

.highlight-strip {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e4ded3;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #eef3ec;
  color: #284537;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.page-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.page-hero {
  padding: 70px 0 40px;
  background: var(--sky);
}

.page-hero .split {
  align-items: flex-start;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e6e0d6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
