* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c2b24;
  background: #f6f8f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw 1rem;
  position: relative;
  z-index: 3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 6vw 3rem;
  position: relative;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(22, 32, 27, 0.12);
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 42, 33, 0.35), rgba(26, 42, 33, 0));
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 6vw;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #e7efe4;
}

.section.dark {
  background: #1f2f27;
  color: #f3f5f1;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(22, 32, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.offset {
  transform: translateY(-12px);
}

.card.dark {
  background: #24362d;
  color: #f3f5f1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(18, 28, 23, 0.2);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.78rem;
  color: #7a8b7c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: #2c5a3f;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f2d08f;
  color: #3f2f10;
}

.btn.ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.inline-cta {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: #f8faf7;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c5a3f;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(22, 32, 27, 0.14);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid #cdd7cc;
  background: #f9fbf8;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: #2c5a3f;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 24, 18, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(44, 90, 63, 0.12);
  font-size: 0.82rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 6vw;
  background: #1b2a22;
  color: #f3f5f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16, 24, 18, 0.2);
  display: none;
  z-index: 99;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.legal-text {
  max-width: 900px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-stack .card {
  background: #ffffff;
}

.floating-badge {
  position: absolute;
  right: 8%;
  top: -18px;
  background: #f2d08f;
  color: #3a2a10;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(50, 38, 12, 0.2);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel,
  .hero-image {
    flex: 1;
  }

  .section-grid {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(33% - 1rem);
  }

  .contact-grid {
    flex-direction: row;
  }

  .image-stack {
    flex-direction: row;
  }
}
