/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1c1a;
  background: #f7f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: #f0ede8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.ad-label {
  font-size: 13px;
  padding: 8px 10px;
  background: #1d1c1a;
  color: #f7f5f2;
  border-radius: 6px;
  display: inline-flex;
  align-self: flex-start;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 16px;
  background: #7a5b3a;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(29, 28, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-dark {
  background: #1f1c19;
  color: #f7f5f2;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 0.9;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d1c6;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: #1d1c1a;
  color: #fff;
}

.btn-outline {
  border: 1px solid #1d1c1a;
}

.inline-link {
  text-decoration: underline;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  background: #e4ded4;
}

.media-card img {
  width: 100%;
  height: 220px;
}

.cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  border-radius: 16px;
  background: #f3efe9;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.quote {
  padding: 18px;
  border-left: 4px solid #7a5b3a;
  background: #fdfbf8;
  font-style: italic;
}

.form-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c1b6;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #4d4339;
}

.footer {
  padding: 24px;
  background: #f0ede8;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #7a5b3a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1d1c1a;
  color: #f7f5f2;
  padding: 16px 24px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.accept-btn {
  background: #f7f5f2;
  color: #1d1c1a;
}

.reject-btn {
  background: transparent;
  color: #f7f5f2;
  border: 1px solid #f7f5f2;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0e7d9;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.muted {
  color: #5f564c;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e1dbd2;
  padding-bottom: 10px;
}

.table-row strong {
  min-width: 180px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.image-fallback-sand {
  background: #e7dfd2;
}

.image-fallback-olive {
  background: #d7d2c4;
}

.image-fallback-stone {
  background: #ded7cd;
}

.image-fallback-ink {
  background: #cfc7bb;
}

.image-fallback-rose {
  background: #e2d8d3;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
  }

  .content {
    padding: 32px 20px 120px;
  }

  .hero {
    flex-direction: column;
  }
}
