* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2320;
  --muted: #4e5a54;
  --accent: #3f7f58;
  --accent-dark: #2c5d41;
  --sand: #f3f0e7;
  --leaf: #e2efe8;
  --shadow: 0 20px 40px rgba(28, 35, 32, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 5vw 10px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 5vw 70px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content {
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
  padding: 12px;
  background: var(--leaf);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.leaf {
  background: var(--leaf);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  align-self: flex-start;
  max-width: 560px;
}

.offset-box.right {
  align-self: flex-end;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-style: italic;
  padding: 18px 24px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
  max-width: 520px;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.split-panel .panel {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cta-inline {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-end;
  background: var(--accent-dark);
  color: #fff;
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d2cb;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 5vw 50px;
  background: #1f2a24;
  color: #e9eee9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 50px 5vw 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal {
  padding: 40px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.cookie-hidden {
  display: none;
}

@media (min-width: 820px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .section-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .image-strip {
    flex-direction: row;
  }

  .services-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .feature-row {
    flex-direction: row;
  }

  .split-panel {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
