* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a1f;
  background-color: #f7f5f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e1ded7;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #5b5b5b;
  border: 1px solid #d7d2c8;
  padding: 6px 10px;
  border-radius: 18px;
  background-color: #f1eee8;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 60px 6vw 40px;
  background-color: #eef1e4;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 0.9;
  min-height: 380px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #1f2a1f;
  background-color: #1f2a1f;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  color: #1f2a1f;
}

.section {
  padding: 60px 6vw;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split-media {
  flex: 1;
}

.split-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-text.tight {
  flex: 1.2;
  gap: 12px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-row.spaced {
  margin-top: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #e2ddd0;
  flex: 1 1 240px;
}

.card h3 {
  font-size: 20px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #2f4d2c;
}

.image-frame {
  background-color: #d9e2d0;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.tall {
  align-self: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-block {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
  background-color: #4b5c44;
  color: #ffffff;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.accent-block .btn {
  align-self: flex-start;
}

.form-section {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid #e2ddd0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-grid label {
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd6c7;
  font-size: 15px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background-color: #1f2a1f;
  color: #f6f2ea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f6f2ea;
}

.footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer small {
  color: #d6d1c8;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border: 1px solid #d2d8c8;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.sticky-cta a {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #d2d8c8;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-card {
  flex: 1 1 280px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 12px;
  background-color: #e6ede0;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 34px;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    justify-content: center;
  }
}
