* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f24;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.topbar {
  padding: 20px 6vw;
  background: #efe9e2;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #1e1f24;
  color: #f6f4f0;
  border-radius: 18px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 0 80px;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 36px 6vw;
  align-items: center;
  background: #f6f4f0;
}

.split-section.alt {
  background: #ece6de;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-media {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  background: #d5d0c7;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #6d6761;
  margin-bottom: 8px;
}

.headline {
  font-size: 2.2rem;
  margin: 0 0 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.button {
  background: #1e1f24;
  color: #f6f4f0;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.outline {
  background: transparent;
  border: 2px solid #1e1f24;
  color: #1e1f24;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1e1f24;
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.list {
  padding-left: 18px;
}

.form-shell {
  background: #1e1f24;
  color: #f6f4f0;
  border-radius: 20px;
  padding: 28px;
}

.form-shell label {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: #f4c95d;
  color: #1e1f24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.footer {
  padding: 32px 6vw 60px;
  background: #1e1f24;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f6f4f0;
  border-bottom: 1px solid transparent;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 0 6vw 24px;
    display: inline-flex;
  }
}
