* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a37;
  background-color: #f6f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw;
  background-color: #fffdf9;
  border-bottom: 1px solid #e6e1d8;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #d4c7b1;
  border-radius: 999px;
  background-color: #f4efe6;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px 6vw 40px;
  background-color: #fef9f1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text,
.split .media-block {
  flex: 1;
}

.media-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background-color: #d9d2c6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1f2a37;
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1f2a37;
  color: #1f2a37;
}

.section {
  padding: 44px 6vw;
}

.section.alt {
  background-color: #fffdf9;
}

.section.dark {
  background-color: #1f2a37;
  color: #f8fafc;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(31, 42, 55, 0.08);
}

.card-image {
  background-color: #e1d8cb;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.price {
  font-weight: 700;
  color: #1f2a37;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #efe6d7;
  font-size: 0.85rem;
}

.bg-map {
  background-color: #e8dfd3;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-ledger {
  background-color: #ddd2c4;
  background-image: url("https://images.unsplash.com/photo-1545239351-1141bd82e8a6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.form-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 30px rgba(31, 42, 55, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc4b4;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 28px 6vw 40px;
  background-color: #fffdf9;
  border-top: 1px solid #e6e1d8;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #3f4a57;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #1f2a37;
  padding: 10px 6vw;
  z-index: 2;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background-color: #ffffff;
  border: 1px solid #d4c7b1;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f2a37;
  background-color: #1f2a37;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .secondary {
  background-color: transparent;
  color: #1f2a37;
}

@media (min-width: 900px) {
  .hero {
    padding: 70px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
