* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
  background: #f7f4f1;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #efe6df;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #4e4e4e;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 60px 6% 50px;
  align-items: center;
  background: #fff9f2;
}

.hero .panel {
  flex: 1 1 320px;
}

.hero .panel h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero .panel p {
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero .panel .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .image-wrap {
  flex: 1 1 320px;
  background: #e3d5c7;
  padding: 12px;
}

.image-wrap img,
.card img,
.split img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 50px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.split .media-wrap {
  flex: 1 1 320px;
  background: #ded4cb;
  padding: 10px;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 6% 60px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid #e4d6c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #6b4d34;
}

.button,
button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 24px;
  border: none;
  background: #6b4d34;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: #b38b6d;
}

.link-inline {
  text-decoration: underline;
  color: #6b4d34;
}

.bg-stage {
  background: #2f2a24;
  color: #ffffff;
  padding: 70px 6%;
  background-image: url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-stage .panel {
  max-width: 620px;
  background: rgba(20, 16, 12, 0.72);
  padding: 24px;
}

.form-section {
  padding: 60px 6%;
  background: #fff;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  gap: 8px;
  font-size: 0.95rem;
}

.form-grid select,
.form-grid input {
  padding: 10px;
  border: 1px solid #c8b8a8;
  border-radius: 6px;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #efe6df;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  max-width: 520px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d7c8b8;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.minimal-header {
  padding: 40px 6% 10px;
}

.legal-content {
  padding: 20px 6% 60px;
  line-height: 1.7;
}
