* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1b19;
  background: #f6f2ee;
}

a {
  color: #3e2f2a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 20px;
  background: #efe6de;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: #5f4b45;
  line-height: 1.4;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
}

.btn {
  padding: 12px 18px;
  border: none;
  background: #3e2f2a;
  color: #fefbf8;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: #b8795e;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding: 40px 64px;
}

.section.split {
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section .media {
  flex: 1;
  min-height: 260px;
  background: #e6ded7;
  border-radius: 8px;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 80px 64px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fefbf8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero a {
  color: #fefbf8;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #fff7f1;
  border-radius: 8px;
  padding: 18px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .media {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #7a3e28;
}

.highlight {
  position: relative;
  color: #1e1b19;
}

.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.highlight .text {
  position: relative;
}

.inline-link {
  text-decoration: underline;
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

select,
input {
  padding: 10px;
  border: 1px solid #d8c8bf;
  border-radius: 6px;
  font-size: 14px;
}

.form-note {
  font-size: 13px;
  color: #7a3e28;
  min-height: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #3e2f2a;
  padding: 10px;
  border-radius: 999px;
  display: flex;
}

.sticky-cta button {
  background: transparent;
  color: #fefbf8;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.footer {
  background: #f1e7de;
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff7f1;
  border: 1px solid #d8c8bf;
  padding: 16px;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small-title {
  font-size: 18px;
  font-weight: 600;
}

.muted {
  color: #6e5a52;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .section {
    padding: 40px 24px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .footer {
    padding: 24px;
  }
}
