* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2b2623;
  background: #f8f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  padding: 28px 24px;
  background: #f0e8e2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid #e1d7cf;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  background: #2b2623;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
}

.nav a.button {
  margin-top: 8px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #2b2623;
  background: #2b2623;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #2b2623;
}

.button:hover,
button.button:hover {
  background: #4a3f39;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section.alt {
  background: #efe6df;
}

.section.dark {
  background: #2b2623;
  color: #fff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid #e0d7d1;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.img-wrap {
  background: #d8cfc8;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 220px;
}

.img-wrap.tall {
  min-height: 320px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-note {
  background: #fff;
  border-left: 4px solid #c04b3b;
  padding: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc5be;
  font-size: 14px;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #c04b3b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #c04b3b;
}

.sticky-cta:hover {
  background: #a94134;
}

.footer {
  padding: 28px 64px 48px;
  background: #f0e8e2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #d6ccc6;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e1d7cf;
  }

  .section {
    padding: 32px 24px;
  }

  .footer {
    padding: 24px;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
