* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f5f2ee;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f5f2ee;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  background: #e3d8c8;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 60px 6vw;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.hero__content {
  flex: 1;
}

.hero__media {
  flex: 1;
  background-color: #d9cdbd;
  padding: 14px;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 18px 0;
  line-height: 1.1;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  padding: 12px 20px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}

.section {
  padding: 56px 6vw;
}

.section--light {
  background: #ffffff;
}

.section--backdrop {
  background-image: linear-gradient(rgba(245, 242, 238, 0.92), rgba(245, 242, 238, 0.92)), url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
}

.split__media {
  background-color: #d7d1c7;
  padding: 12px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fdfbf7;
  padding: 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.card__media {
  background-color: #d3c8b8;
  padding: 8px;
}

.card__price {
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
}

.form-wrap {
  background: #1a1a1a;
  color: #fff;
  padding: 28px;
  border-radius: 12px;
}

.form-wrap label {
  display: block;
  margin-bottom: 6px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 14px;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  background: #7c5d3a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
}

.footer {
  padding: 40px 6vw;
  background: #111;
  color: #f5f2ee;
  margin-top: auto;
}

.footer a {
  color: #f5f2ee;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d5d0c8;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #1a1a1a;
  background: #fff;
  cursor: pointer;
}

.cookie-actions .btn-accept {
  background: #1a1a1a;
  color: #fff;
}

.meta {
  font-size: 14px;
  color: #4b4b4b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-bg {
  background: #cbbda9;
  padding: 18px;
}
