* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --ink: #1c1b17;
  --muted: #6d665f;
  --accent: #2c7a3f;
  --accent-soft: #d7f2de;
  --sand: #f0e7db;
  --deep: #12361f;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav-asym {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
}

.hero {
  padding: 40px 0 70px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.hero-media {
  position: relative;
  padding-left: 10vw;
}

.hero-media img {
  border-radius: 28px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.badge {
  position: absolute;
  bottom: -18px;
  left: 8vw;
  background: var(--accent-soft);
  color: var(--deep);
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--sand);
}

.section-offset {
  position: relative;
}

.section-offset .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: 10px;
}

.card small {
  color: var(--muted);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.floating-note {
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 16px;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d0c7;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  background: #14110e;
  color: #f6f1ea;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 10;
}

.section-image {
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-stack img {
  border-radius: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 260px;
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.section-background {
  background: linear-gradient(120deg, rgba(44, 122, 63, 0.12), rgba(240, 231, 219, 0.9)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

@media (min-width: 860px) {
  .nav-asym {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    width: 48%;
    transform: translateX(6%);
  }

  .hero-media {
    width: 52%;
    padding-left: 0;
    transform: translateX(-4%);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .media-stack {
    flex-direction: row;
  }

  .section-offset .container {
    flex-direction: row;
    align-items: center;
  }

  .section-offset .container > * {
    flex: 1;
  }

  .cookie-banner.active {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
