* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1f1f;
  background-color: #fbfaf8;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background-color: #f1ece6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  background-color: #f7d9b2;
  color: #473b2a;
  padding: 8px 12px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.sidebar-note {
  font-size: 13px;
  color: #5a5148;
  line-height: 1.4;
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  min-height: 360px;
  border-radius: 26px;
  background-color: #5a3b2e;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
  position: relative;
  max-width: 480px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #2d2a26;
  background-color: #2d2a26;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background-color: transparent;
  color: #2d2a26;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section h2 {
  margin: 0;
  font-size: 26px;
}

.section p {
  margin: 0;
  line-height: 1.7;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-wrap {
  background-color: #e9dfd1;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 260px;
}

.image-wrap img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.story-bg {
  background-color: #5d3a2a;
  background-image: url("https://images.unsplash.com/photo-1498579809087-ef1e558fd1da?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
}

.story-bg .layer {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  background-color: #e8ddd0;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card .price {
  font-weight: 700;
  color: #2d2a26;
}

.form-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b9;
  font-size: 14px;
}

.footer {
  border-top: 1px solid #e4ddd4;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #4b433a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #c0481a;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sidebar-cta {
  align-self: flex-start;
}

.small-note {
  font-size: 12px;
  color: #5d5248;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 32px 24px 80px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 16px;
  }
}
