* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1b14;
  --muted: #4b5a52;
  --accent: #2f7b58;
  --accent-dark: #1f5a41;
  --sand: #f4f2ec;
  --mist: #e4ece7;
  --sun: #f2d58a;
  --stone: #c9d2c7;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 8px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 48px 6vw;
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(15, 27, 20, 0.08);
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.hero-highlight {
  background: var(--mist);
  border-radius: 26px;
  padding: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.sun {
  background: var(--sun);
  color: #3d3521;
}

.section {
  padding: 48px 6vw;
  position: relative;
}

.section.alt {
  background: var(--white);
}

.section.mist {
  background: var(--mist);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.offset-box {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(15, 27, 20, 0.08);
  transform: translateY(-18px);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-block {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

.mini-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial {
  background: var(--sun);
  padding: 22px;
  border-radius: 20px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
}

.footer {
  background: #101811;
  color: var(--white);
  padding: 32px 6vw;
}

.footer a {
  color: var(--white);
  opacity: 0.85;
  margin-right: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal {
  max-width: 920px;
  margin: 0 auto;
}

.legal h1 {
  margin-top: 0;
}

.callout {
  background: var(--mist);
  padding: 24px;
  border-radius: 20px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img:nth-child(2) {
  transform: translateX(10px);
}

.image-stack img:nth-child(3) {
  transform: translateX(-8px);
}

.map-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-highlight {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }
}
