* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f3ee;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #184f3a;
  text-decoration: none;
}

header {
  padding: 28px 6vw 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #3d3d3d;
  max-width: 260px;
  text-align: right;
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.soft {
  background: #ffffff;
}

.section.deep {
  background: #e7eee7;
}

.section.earth {
  background: #efe7dc;
}

.layout-split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.layout-split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  margin-top: -24px;
}

.stack-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d8e3d1;
  height: 100%;
}

.img-frame.sand {
  background: #e6d8c7;
}

.img-frame.fern {
  background: #cfe0d2;
}

.img-frame.clay {
  background: #e9d6c5;
}

.img-frame.stone {
  background: #d9d6d0;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 22px;
  background: #1c5b42;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cta-ghost {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid #1c5b42;
  color: #1c5b42;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.price-item span {
  font-weight: 600;
}

.lead-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 14px;
}

.lead-form.visible {
  display: flex;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  font-size: 1rem;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1c5b42;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.sticky-cta button {
  background: #ffffff;
  color: #1c5b42;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1c5b42;
  color: #ffffff;
}

.cookie-reject {
  background: #e7e7e7;
  color: #1b1b1b;
}

footer {
  padding: 40px 6vw 60px;
  background: #121815;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #d2f2dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d5d5d5;
}

.page-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.narrow {
  max-width: 860px;
}

.hero-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 320px;
}

.stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.inline-cta {
  font-weight: 600;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 780px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-block {
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
