* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #182014;
  background: #f5f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #27412b;
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.85rem;
  background: #e7efe4;
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf2ea;
  color: #1e2f21;
}

main {
  flex: 1;
}

section {
  padding: 52px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #48614a;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 8px 0 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.button {
  border: none;
  background: #2c5035;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: #d9e6d7;
  color: #1b2a1e;
}

.panel {
  background: #e7efe4;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.panel--soil {
  background-image: linear-gradient(120deg, rgba(235, 241, 230, 0.92), rgba(214, 226, 211, 0.86)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel.panel--workspace {
  background-image: linear-gradient(140deg, rgba(243, 245, 238, 0.92), rgba(213, 226, 210, 0.9)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel.panel--heritage {
  background-image: linear-gradient(140deg, rgba(238, 243, 233, 0.93), rgba(210, 223, 210, 0.88)),
    url("https://images.unsplash.com/photo-1435777940218-be0b632d06db?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.spacer-top {
  margin-top: 26px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(25, 39, 26, 0.08);
}

.service-card .image-frame {
  background: #dfe7db;
  border-radius: 14px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(25, 39, 26, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6d2c2;
  font-size: 1rem;
  font-family: inherit;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-row.spacer-top {
  margin-top: 20px;
}

.testimonial {
  flex: 1 1 260px;
  background: #f0f4ee;
  padding: 18px;
  border-radius: 16px;
}

.split-image {
  background: #dfe7db;
  border-radius: 18px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 360px;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-box {
  flex: 1 1 220px;
  padding: 18px;
  background: #f0f4ee;
  border-radius: 16px;
}

footer {
  padding: 36px 0 60px;
  background: #1c2a1f;
  color: #f3f5ef;
}

footer a {
  color: #f3f5ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 240px;
}

.footer-col p {
  margin: 6px 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 12px 22px rgba(25, 39, 26, 0.2);
}

#cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1b2a1e;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(25, 39, 26, 0.18);
  max-width: 360px;
  z-index: 20;
}

#cookie-banner .button {
  width: auto;
}

.banner-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta button {
    width: 100%;
  }
}
