* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 6vw 10px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #f0e2d1;
  padding: 6px 10px;
}

.hero {
  padding: 30px 6vw 40px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 340px;
}

.split .media-box {
  flex: 1 1 340px;
  background-color: #e4d8c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.headline {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #1f1f1f;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: #c89b6a;
  color: #1f1f1f;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: #f0e2d1;
}

.section.dark {
  background: #1f1f1f;
  color: #f6f4f0;
}

.section.dark a {
  color: #f6f4f0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .media-box {
  background-color: #d9c6b1;
  border-radius: 12px;
  overflow: hidden;
  min-height: 160px;
}

.price {
  font-weight: 700;
}

.divider {
  height: 1px;
  background: #d1c3b2;
  margin: 20px 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8c0b7;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1f1f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.sticky-cta button {
  background: #c89b6a;
  border: none;
  color: #1f1f1f;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

footer {
  padding: 30px 6vw 60px;
  background: #efe8df;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f1f1f;
  color: #fff;
}

.cookie-reject {
  background: #d9c6b1;
  color: #1f1f1f;
}

@media (max-width: 760px) {
  .headline {
    font-size: 28px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
