* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2a1f;
  background: #f6f7f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand span {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6a5f;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #4b7f62;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 52px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split .visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  background: #e6efe4;
}

.hero .visual {
  background: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  min-height: 360px;
  border-radius: 24px;
}

.section-tone {
  background: #ffffff;
}

.section-moss {
  background: #dfeadf;
}

.section-deep {
  background: #233327;
  color: #f4f8f3;
}

.section-deep a {
  color: #f4f8f3;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 22px;
  flex: 1;
  min-width: 230px;
  box-shadow: 0 18px 30px rgba(30, 50, 35, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #cfe1d3;
  font-size: 0.8rem;
  color: #2b4a31;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: #4b7f62;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #4b7f62;
  border: 2px solid #4b7f62;
}

.btn.light {
  background: #f4f8f3;
  color: #1c2a1f;
}

.inline-cta {
  color: #4b7f62;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 14px 22px rgba(20, 40, 25, 0.08);
}

.service-item strong {
  font-size: 1.05rem;
}

.price {
  font-size: 1.1rem;
  color: #2b4a31;
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 30px rgba(18, 36, 25, 0.12);
}

.form-panel label {
  font-size: 0.9rem;
  color: #425346;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd7cf;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 6;
  box-shadow: 0 16px 28px rgba(20, 35, 25, 0.18);
}

.site-footer {
  background: #14261a;
  color: #f1f5f1;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 32px rgba(10, 24, 16, 0.2);
  z-index: 8;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: #e3ede5;
}

.page-hero .visual {
  min-height: 280px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
}

.about-visual {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80");
}

.services-visual {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80");
}

.contact-visual {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 50px 0;
}

.policy-content h2 {
  font-size: 1.5rem;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
