* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2620;
  background-color: #f7f5f0;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  padding: 24px 6vw 10px 6vw;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  background: #efe6d6;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 6vw 60px 6vw;
  background: #f1efe9;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8e0d2;
}

.image-box {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d8e0d2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #e2ebe2;
  font-size: 0.85rem;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background-color: #2b5936;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(43, 89, 54, 0.2);
}

.secondary-btn {
  background-color: #f5c86a;
  color: #3a2b15;
}

.ghost-btn {
  background-color: transparent;
  color: #2b5936;
  border: 1px solid #2b5936;
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-contrast {
  background: #ffffff;
}

.section-soft {
  background: #eef1ea;
}

.split {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 260px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 20px;
  background-color: #f6f2e8;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card img {
  border-radius: 16px;
  width: 100%;
  height: 180px;
  background-color: #d9e0d1;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.quote {
  padding: 20px 24px;
  border-left: 4px solid #2b5936;
  background: #f9f7f2;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #2b5936;
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f1efe9;
  flex-wrap: wrap;
}

.form-block {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d3c1;
  font-size: 1rem;
}

.service-selectors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4f1e7;
}

.service-option input {
  margin: 0;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 220px;
  height: 200px;
  border-radius: 18px;
  background-color: #dbe1d4;
}

footer {
  padding: 40px 6vw 60px 6vw;
  background: #1e2a22;
  color: #f8f6ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.legal {
  font-size: 0.85rem;
  color: #c6d2c7;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hide {
  display: none;
}

@media (max-width: 720px) {
  .hero-row {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
