* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  padding: 32px 24px;
  background: #f0e8dd;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid #ded4c7;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b4f43;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px;
  border-radius: 24px;
}

.section.light {
  background: #fffaf4;
}

.section.dark {
  background: #1f1f1f;
  color: #f4efe9;
}

.section.soft {
  background: #efe6da;
}

.section-content {
  flex: 1 1 320px;
}

.section-title {
  font-size: 32px;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 18px;
  margin: 0 0 16px;
  color: #4f463c;
}

.dark .section-subtitle {
  color: #d8d0c7;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 40px;
  margin: 0;
}

.hero p {
  margin: 0;
}

.image-wrap {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #d9cdbf;
  min-height: 260px;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card-image {
  background: #d9cdbf;
  border-radius: 14px;
  overflow: hidden;
  height: 170px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  color: #2f2a24;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1b1b1b;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d1c6b8;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1b1b1b;
  color: #f5f1eb;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

footer {
  background: #ece2d7;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.note-box {
  padding: 16px;
  border-radius: 16px;
  background: #f8efe5;
  border: 1px solid #e0d4c5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 13px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ded4c7;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .content {
    padding: 24px 24px 120px;
  }

  .sticky-cta {
    right: 16px;
  }
}
