* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #f7f5f2;
  padding: 20px 6%;
  border-bottom: 1px solid #e1ded8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b4c3f;
  background: #efe8df;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  padding: 40px 6% 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 40px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 260px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 260px;
  background: #e5dfd5;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual {
  background-color: #ded6cc;
  background-image: url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
  flex: 1 1 360px;
}

.section-light {
  background: #ffffff;
}

.section-contrast {
  background: #efe8df;
}

.section-dark {
  background: #23201d;
  color: #f7f2ea;
}

.section-dark a {
  color: #f7f2ea;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background-color: #e5dfd5;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #7b3f14;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #7b3f14;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #e9ddd0;
  color: #3c2c1f;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c0b6;
  font-size: 1rem;
}

.form-wrap textarea {
  min-height: 90px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: #1f6f5c;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #1f1b18;
  color: #f1ece5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.footer-small {
  font-size: 0.85rem;
  color: #cfc7bd;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.legal-section {
  padding: 40px 6%;
}

.legal-section h1 {
  margin-top: 0;
}

.list {
  padding-left: 18px;
}

.note {
  background: #fff7ee;
  border-left: 4px solid #b27a53;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
