* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b2b22;
  background-color: #f6f7f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #1e5f45;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2a7b57;
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 20px 6vw 0 6vw;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background-color: #dfe9db;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 30px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(22, 42, 33, 0.08);
}

.hero-image {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  background-color: #cfd8c6;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background-color: #eef1e8;
}

.section.deep {
  background-color: #dde7d8;
}

.bg-ambient {
  background-image: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-title {
  margin: 0 0 12px 0;
  font-size: 28px;
}

.section-subtitle {
  margin: 0 0 18px 0;
  font-size: 16px;
  color: #30483a;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background-color: #f3f6ef;
  border: 1px solid #d7e3d2;
}

.service-item img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #cbd7c5;
}

.price-tag {
  font-weight: 700;
  color: #1f5a44;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #1f5a44;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: #ffffff;
  color: #1f5a44;
  border: 1px solid #1f5a44;
}

.button.light {
  background-color: #dfe9db;
  color: #1b2b22;
}

.inline-link {
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 160px;
  padding: 16px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #d7e3d2;
}

.testimonial {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d7e3d2;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #d7e3d2;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d5c4;
  font-size: 14px;
}

.form-hint {
  font-size: 12px;
  color: #52665a;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #1b2b22;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(20, 32, 26, 0.25);
  z-index: 10;
}

.sticky-cta .button {
  background-color: #e6f1df;
  color: #1b2b22;
}

.footer {
  padding: 30px 6vw 60px 6vw;
  background-color: #1b2b22;
  color: #f6f7f2;
}

.footer a {
  color: #f6f7f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.disclaimer {
  font-size: 12px;
  margin-top: 16px;
  color: #cbd7c5;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: #ffffff;
  border: 1px solid #c9d5c4;
  border-radius: 14px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 11;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-body {
  max-width: 720px;
}

.image-block {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  background-color: #cfd8c6;
}

.notice {
  background-color: #eaf1e5;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #cbd7c5;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0 6vw;
  }
}
