:root {
  --bg: #f7f4f1;
  --text: #1b1a18;
  --muted: #5b5752;
  --accent: #2f6f5e;
  --accent-2: #d97b52;
  --light: #ffffff;
  --shadow: 0 18px 40px rgba(27, 26, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-2);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-weight: 700;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 64px;
}

.hero-card {
  background: var(--light);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateX(-4%);
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateX(6%);
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--light);
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-panel {
  background: var(--light);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: #efe9e2;
  padding: 18px;
  border-radius: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.2rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4cec8;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent-2);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
  font-weight: 600;
}

.footer {
  padding: 40px 0 80px;
  background: #1e1c19;
  color: #f2efe9;
}

.footer a {
  color: #f6c9a6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 6;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0 50px;
}

.page-hero img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
  }

  .offset-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-panel {
    flex: 1;
  }

  .stats {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .asym-grid {
    flex-direction: row;
  }

  .asym-row {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
