* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f1d;
  --muted: #56605c;
  --accent: #1f7a5c;
  --accent-dark: #14523d;
  --sand: #f4f0ea;
  --mist: #eef3f1;
  --sun: #f5c05a;
  --shadow: rgba(18, 24, 20, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 10px;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  box-shadow: 0 14px 40px var(--shadow);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.3;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.asym-block {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
}

.offset {
  margin-left: 6vw;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 36px var(--shadow);
}

.card img {
  border-radius: 14px;
}

.badge {
  align-self: flex-start;
  background: var(--sun);
  color: #3b2d0a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 122, 92, 0.15);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 31, 29, 0.15);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 36px 6vw 60px;
  background: #111714;
  color: #f8f5f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: #cbd3cf;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 860px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-top {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .asym-row,
  .asym-row.reverse {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .service-item {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
    gap: 20px;
  }

  .form-fields,
  .form-aside {
    flex: 1;
  }
}
