* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #f1efe9;
  border-bottom: 1px solid #d6d2c5;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: #5a574e;
  text-align: right;
  max-width: 220px;
}

main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6%;
  gap: 40px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.section-title {
  font-size: 32px;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: #3b3a35;
}

.image-wrap {
  background-color: #dedad0;
  padding: 8px;
}

.image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  background: #1f1f1f;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: #ffffff;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.panel {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #e1ddd1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border: 1px solid #e0dccf;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-price {
  font-weight: 700;
}

.inline-media {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-media img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #bfb9aa;
  font-size: 14px;
  width: 100%;
}

footer {
  background: #f1efe9;
  border-top: 1px solid #d6d2c5;
  padding: 30px 6%;
  font-size: 14px;
  color: #4d4a42;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 12px;
  color: #6a665b;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f1f1f;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 5;
}

.sticky-cta button {
  background: #ffffff;
  color: #1f1f1f;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d6d2c5;
  padding: 16px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.subtle-section {
  background: #e9e6dc;
}

@media (max-width: 880px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
