* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 10px;
  background-color: #f0efe9;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #e4e0d6;
  transition: background-color 0.2s ease;
}

.nav a:hover {
  background-color: #d1cabc;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #d8e8e1;
  padding: 6px 10px;
  border-radius: 8px;
}

.hero {
  padding: 40px 6vw 60px;
  background-color: #e9f0ea;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  background-color: #2e6b55;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 64, 52, 0.25);
}

.btn.secondary {
  background-color: #f0efe9;
  color: #2e6b55;
  border: 1px solid #2e6b55;
}

.link-cta {
  color: #2e6b55;
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background-color: #f1f4f2;
}

.section.deep {
  background-color: #e1ebe4;
}

.section.bg-rain {
  background-image: url("https://images.unsplash.com/photo-1502904550040-7534597429ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b4b41;
  color: #f7f6f2;
  position: relative;
}

.section.bg-rain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 32, 26, 0.6);
}

.section.bg-rain > * {
  position: relative;
  z-index: 1;
}

.section.bg-cistern {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f3d35;
  color: #ffffff;
  position: relative;
}

.section.bg-cistern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 46, 38, 0.55);
}

.section.bg-cistern > * {
  position: relative;
  z-index: 1;
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(28, 44, 36, 0.08);
}

.card img {
  width: 120px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d6e2d9;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #d3d8d4;
}

.price-item span {
  font-weight: 600;
}

.image-frame {
  background-color: #cdd9cc;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-card {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(26, 45, 36, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7d1c8;
  font-size: 1rem;
  font-family: inherit;
}

.inline-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer {
  padding: 36px 6vw 40px;
  background-color: #1f2a24;
  color: #f7f6f2;
}

.footer a {
  color: #f7f6f2;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.disclaimer {
  font-size: 0.9rem;
  margin-top: 18px;
  color: #d3d9d4;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2e6b55;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(18, 34, 27, 0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #cfd6ce;
  padding: 16px 6vw;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 25px rgba(24, 36, 29, 0.1);
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  background-color: #2e6b55;
  color: #ffffff;
}

.cookie-btn.reject {
  background-color: #d9e0d8;
  color: #1f2a24;
}

.page-title {
  padding: 50px 6vw 20px;
  background-color: #e9f0ea;
}

.page-title h1 {
  margin: 0;
  font-size: 2.4rem;
}

.content {
  padding: 30px 6vw 60px;
}

.content p {
  margin-top: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-box {
  background-color: #f5f0e6;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}
