* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: #1a1a1a;
  background: #f7f3ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #2b5d4d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  padding: 40px 6vw 60px;
  background: linear-gradient(120deg, rgba(22, 51, 43, 0.9), rgba(22, 51, 43, 0.4)), url("https://images.unsplash.com/photo-1503676382389-4809596d5290?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f4ef;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0;
  max-width: 720px;
}

.hero p {
  max-width: 640px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: #f2c67c;
  color: #1f1a16;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #f8f4ef;
  color: #f8f4ef;
}

.story {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(17, 14, 11, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-block.slim {
  max-width: 720px;
}

.story-block.highlight {
  background: #e8efe8;
}

.inline-cta {
  font-weight: 600;
}

.quote {
  font-style: italic;
  border-left: 4px solid #2b5d4d;
  padding-left: 16px;
}

.split-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image img {
  border-radius: 16px;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.pricing-reveal {
  background: #1a2f2a;
  color: #f8f4ef;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-section {
  background: #fff;
  padding: 32px 6vw 50px;
}

.lead-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f7f3ee;
  padding: 24px;
  border-radius: 18px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d3cec6;
  background: #fff;
}

.lead-form button {
  align-self: flex-start;
}

.section-image {
  border-radius: 18px;
}

.cta-banner {
  padding: 30px 6vw;
  background: #e3d8cc;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer {
  padding: 40px 6vw;
  background: #1a2f2a;
  color: #f8f4ef;
}

.footer a {
  color: #f2c67c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: #2b5d4d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 50px 6vw;
  background: #e8efe8;
}

.content-wrap {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    padding-right: 40vw;
  }

  .story {
    padding-left: 12vw;
    padding-right: 12vw;
  }

  .story-block.split-image {
    flex-direction: row;
    gap: 24px;
  }

  .split-image img {
    max-width: 40%;
  }

  .trust-row {
    flex-direction: row;
  }

  .trust-card {
    flex: 1;
  }

  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
