* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1e1e1e;
  text-decoration: none;
}

header {
  padding: 20px 6vw 10px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  background-color: #1e1e1e;
  color: #f7f4ef;
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 60px 6vw;
}

.section-tight {
  padding: 40px 6vw;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
  position: relative;
}

.hero-overlay {
  background-color: rgba(20, 20, 20, 0.55);
  padding: 70px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
  min-width: 260px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background-color: #1e1e1e;
  color: #f7f4ef;
  font-weight: 600;
  cursor: pointer;
}

.secondary-btn {
  background-color: #f7f4ef;
  color: #1e1e1e;
}

.ghost-btn {
  background-color: transparent;
  color: #1e1e1e;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-box {
  background-color: #e7dfd2;
  border-radius: 16px;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.highlight {
  background-color: #f1ebe0;
  border-radius: 24px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #1e1e1e;
  color: #f7f4ef;
  border-radius: 20px;
  padding: 30px;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b4;
  font-size: 15px;
}

footer {
  padding: 40px 6vw 60px;
  background-color: #1e1e1e;
  color: #f7f4ef;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid .col {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 18px;
  max-width: 340px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.muted {
  color: #5f5b55;
}

.divider {
  height: 1px;
  background-color: #d9d1c6;
  margin: 20px 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
