* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f1d;
  --muted: #54605b;
  --leaf: #2f5d4a;
  --moss: #7ea290;
  --clay: #f2efe9;
  --fog: #e7efe9;
  --accent: #e56f2f;
  --shadow: rgba(19, 28, 23, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fdfcf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 7vw 12px;
  gap: 32px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
  color: var(--leaf);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 30px 7vw 70px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--leaf);
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--leaf);
}

.hero-media {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.hero-media img:first-child {
  flex: 1.2;
  min-height: 240px;
  object-fit: cover;
}

.hero-media img:last-child {
  flex: 0.8;
  min-height: 220px;
  object-fit: cover;
  transform: translateY(24px);
}

.section {
  padding: 70px 7vw;
}

.section.highlight {
  background: var(--fog);
}

.section.dark {
  background: #18221d;
  color: #f9f7f2;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-grid.asym {
  gap: 36px;
}

.offset-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 48px var(--shadow);
}

.offset-card.shift {
  margin-left: auto;
  max-width: 520px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split .text {
  max-width: 520px;
}

.split .media {
  display: flex;
  gap: 16px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--moss);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px var(--shadow);
}

.service-card .price {
  font-weight: 700;
  color: var(--leaf);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px var(--shadow);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cdd6d0;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  max-width: 240px;
}

.sticky-cta p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer {
  padding: 50px 7vw;
  background: #131815;
  color: #c9d4ce;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #101512;
  color: #f5f5f1;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #f5f5f1;
  padding: 8px 16px;
  background: transparent;
  color: inherit;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: #f5f5f1;
  color: #101512;
}

.layout-duo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.layout-duo .offset-card {
  max-width: 520px;
}

.layout-duo .offset-card:nth-child(2) {
  margin-left: auto;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(46, 93, 74, 0.12);
  color: var(--leaf);
  font-weight: 600;
  font-size: 0.8rem;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-top {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .section-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .section-grid.asym .offset-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .form-wrap {
    flex-direction: row;
  }

  .form-wrap form {
    flex: 1;
  }
}
