/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #15241d;
  background: #f5f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 26px 0 10px;
}

.nav-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-pill {
  padding: 6px 14px;
  border: 1px solid #1f352a;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-pill:hover {
  background: #1f352a;
  color: #fff;
}

.section {
  padding: 78px 0;
  position: relative;
}

.section.compact {
  padding: 56px 0;
}

.section.dark {
  background: #122015;
  color: #f2f4ef;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #dfe7d6;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-col {
  flex: 1 1 320px;
}

.hero {
  padding: 120px 0 90px;
  background: linear-gradient(120deg, rgba(16, 31, 21, 0.75), rgba(16, 31, 21, 0.2)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #f2f4ef;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  margin: 0 0 18px;
  line-height: 1.05;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #e0a527;
  color: #1b1b1b;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background: transparent;
  border: 1px solid #f2f4ef;
  color: #f2f4ef;
}

.btn.dark {
  background: #122015;
  color: #f7f7f4;
}

.link-inline {
  text-decoration: underline;
  font-weight: 600;
}

.offset-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stack img:nth-child(2) {
  align-self: flex-end;
  width: 86%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.layered-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  position: relative;
}

.layered-box::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 22px;
  width: 120px;
  height: 120px;
  background: #c3d3bc;
  border-radius: 18px;
  z-index: -1;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-card img {
  height: 140px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 12px;
}

.price {
  font-weight: 700;
  color: #1c3b2a;
  margin-top: 8px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-card {
  flex: 1 1 180px;
  background: #122015;
  color: #f2f4ef;
  padding: 20px;
  border-radius: 16px;
  transform: translateY(10px);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.form-shell label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7d1c3;
  font-size: 15px;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: #e0a527;
  color: #1b1b1b;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 50px 0 70px;
  background: #0c1610;
  color: #dfe7d6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  padding: 16px 18px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.policy-hero {
  background: #dae5d3;
  padding: 80px 0 50px;
}

.policy-hero .asym-row {
  align-items: flex-start;
}

.policy-body {
  background: #ffffff;
  padding: 60px 0 80px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1f352a;
  color: #f2f4ef;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .hero {
    padding: 90px 0 70px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
