* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f2ed;
  --ink: #1e2621;
  --muted: #5a6a5f;
  --accent: #2f6b4f;
  --accent-dark: #24543f;
  --soft: #e7ece6;
  --sand: #f3efe9;
  --stone: #d5ddd6;
  --highlight: #f7f1df;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  gap: 20px;
  background: #fff;
  border-bottom: 1px solid var(--stone);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--highlight);
  color: #5b4a21;
  border: 1px solid #e3d6b6;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 60px 6% 40px;
  position: relative;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 30px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-text p {
  color: var(--muted);
  margin: 0;
}

.hero-visual {
  flex: 0.9;
  background-color: var(--soft);
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  min-height: 360px;
  transform: translateY(-20px);
  box-shadow: 0 22px 40px rgba(32, 38, 34, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:active {
  transform: translateY(1px);
}

.section {
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--sand);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section-header h2 {
  margin: 0;
  font-size: 2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.offset-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(32, 38, 34, 0.08);
}

.offset-card.highlight {
  background: var(--highlight);
  align-self: flex-start;
  margin-top: 20px;
}

.offset-card h3 {
  margin-top: 0;
}

.media {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.media-img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  object-fit: cover;
  background-color: var(--stone);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 28px rgba(32, 38, 34, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 18px;
  object-fit: cover;
  background-color: var(--stone);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.layered {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 20px;
  background: var(--soft);
  border-radius: 28px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

form {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 28px rgba(32, 38, 34, 0.1);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.footer {
  margin-top: auto;
  padding: 28px 6% 40px;
  background: #fff;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plain-email {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(32, 38, 34, 0.14);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 44px 6%;
  background: var(--sand);
  flex-wrap: wrap;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.page-hero img {
  width: 100%;
  max-width: 420px;
  height: 260px;
  border-radius: 22px;
  object-fit: cover;
  background-color: var(--stone);
}

.hero-garden {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.section-bg-garden {
  background-color: #3b4b3f;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-bg-garden .section-header p,
.section-bg-garden .note,
.section-bg-garden .small-muted {
  color: #f0f5ef;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 22px rgba(32, 38, 34, 0.08);
}

.small-muted {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero {
    flex-direction: column;
  }

  .hero-visual {
    transform: none;
    min-height: 260px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
