* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: underline;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

header {
  padding: 28px 6%;
  background: #f1ede7;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #e7ddd2;
  border-radius: 16px;
}

.section {
  padding: 70px 6%;
  background: #f6f4f0;
}

.section.alt {
  background: #efe8df;
}

.section.dark {
  background: #1f1d1a;
  color: #f4f0ea;
}

.section.dark a {
  color: #f4f0ea;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  padding: 12px 20px;
  background: #1f1d1a;
  color: #f5f1eb;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.btn.light {
  background: #f5f1eb;
  color: #1c1c1c;
}

.inline-cta {
  font-weight: 600;
}

.image-box {
  background: #ded6cc;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.visual-band {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  background: #cfc6bb;
  display: flex;
  align-items: center;
}

.visual-band img {
  position: absolute;
  inset: 0;
}

.visual-content {
  position: relative;
  z-index: 1;
  background: rgba(31, 29, 26, 0.65);
  color: #f5f1eb;
  padding: 24px;
  border-radius: 16px;
  max-width: 440px;
  margin: 40px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.divider {
  height: 1px;
  background: #d6cdc2;
  margin: 24px 0;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc6bb;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

footer {
  padding: 50px 6%;
  background: #161513;
  color: #efe9e1;
}

footer a {
  color: #efe9e1;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.92rem;
  color: #d9d2c8;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1d1a;
  padding: 12px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta span {
  color: #f5f1eb;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #f5f1eb;
  color: #1c1c1c;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 12px;
  border: 1px solid #1f1d1a;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  header,
  .section,
  footer {
    padding: 50px 8%;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
