* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2d2a26;
  background: #f7f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: #f2ece4;
  border-bottom: 1px solid #e0d7cc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.82rem;
  background: #3a2c24;
  color: #f7f3ee;
  padding: 6px 10px;
  border-radius: 999px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 5vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1 1 320px;
}

.image-frame {
  background: #d6c4b2;
  border-radius: 16px;
  overflow: hidden;
}

.frame-xl {
  height: 420px;
}

.frame-lg {
  height: 360px;
}

.frame-md {
  height: 320px;
}

.frame-sm {
  height: 150px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #3a2c24;
  color: #f7f3ee;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #f7f3ee;
  color: #3a2c24;
  border: 1px solid #3a2c24;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.section-muted {
  background: #efe7dc;
}

.section-accent {
  background: #2f221b;
  color: #f7f3ee;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fffaf4;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7b8a7;
  font-size: 1rem;
  background: #fffdf9;
}

.footer {
  margin-top: auto;
  padding: 30px 5vw;
  background: #f2ece4;
  border-top: 1px solid #e0d7cc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f2c87f;
  color: #2d2a26;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d8c9b9;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
}

.subtle {
  font-size: 0.95rem;
  color: inherit;
  opacity: 0.85;
}

.legal-block {
  max-width: 760px;
  padding: 50px 5vw;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-columns ul {
  flex: 1 1 240px;
  margin: 0;
  padding-left: 18px;
}
