* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1f1b;
  background-color: #f5f6f2;
  line-height: 1.6;
}

a {
  color: #1b4d2b;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1b4d2b;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  gap: 16px;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5b4b;
  padding: 6px 10px;
  border: 1px solid #cbd5c0;
  border-radius: 999px;
  background: #edf2e8;
}

.split {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero {
  padding: 32px 0 56px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.hero p {
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b4d2b;
  background: #1b4d2b;
  color: #f5f6f2;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1b4d2b;
}

.section {
  padding: 56px 0;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #e6efe2;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(12, 24, 12, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #1b4d2b;
}

.image-wrap {
  background-color: #d9e5d5;
  border-radius: 16px;
  overflow: hidden;
}

.layered {
  margin-top: -28px;
  padding-top: 84px;
}

.inline-note {
  font-size: 0.95rem;
  color: #354635;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(12, 24, 12, 0.1);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c3d1c2;
  font-size: 1rem;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edf2e8;
  color: #1b4d2b;
  font-weight: 600;
}

.footer {
  padding: 40px 0;
  background: #121612;
  color: #e7ede2;
}

.footer a {
  color: #e7ede2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f2c94c;
  color: #1b1f1b;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  width: min(720px, 92%);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px;
  color: #f5f6f2;
}

.bg-garden {
  background-image: linear-gradient(
      rgba(14, 20, 14, 0.55),
      rgba(14, 20, 14, 0.55)
    ),
    url("https://images.unsplash.com/photo-1770385433541-398a9ddb2668?w=1400&q=80");
}

.divider {
  height: 1px;
  background: #cbd5c0;
  margin: 24px 0;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
