* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1d1a;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 12px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #6b5d55;
  background: #efe8e1;
  padding: 6px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 6vw 60px;
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 18, 16, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tag {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  background: #f5c7a9;
  color: #1f1d1a;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #f5c7a9;
  color: #fff;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  max-width: 520px;
}

.split .visual {
  flex: 1 1 280px;
  max-width: 460px;
}

.offset {
  margin-top: 30px;
}

.image-frame {
  background: #d9cfc6;
  padding: 8px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  background-image: url("https://images.pexels.com/photos/6765651/pexels-photo-6765651.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 22px;
  position: relative;
}

.highlight-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 25, 22, 0.5);
  border-radius: 22px;
}

.highlight-band > * {
  position: relative;
  z-index: 1;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cfc8;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #5f5650;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1f1d1a;
  color: #f6f3ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f5c7a9;
  color: #1f1d1a;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 28px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.detail-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

.small-note {
  font-size: 0.9rem;
  color: #6b5d55;
}
