* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1d1d1f;
  background: #f7f4f0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #1d1d1f;
  text-decoration: none;
}

header {
  padding: 20px 40px;
  background: #fff4ea;
  border-bottom: 1px solid #e4d9d0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5c4c3f;
  background: #ffe7d4;
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 40px;
  position: relative;
}

.section.slim {
  padding: 48px 40px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.hero {
  background: #fff;
}

.hero-image {
  background-color: #d6d2cc;
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.subline {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2c3a4f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.light {
  background: #fff;
  color: #2c3a4f;
  border: 1px solid #cdd2da;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: #5e5e5e;
}

.image-card {
  background-color: #d8d3ca;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-focus {
  background-color: #c9c1b7;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 30, 37, 0.6);
}

.bg-focus .split,
.bg-focus .stacked {
  position: relative;
  z-index: 1;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece6df;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #d8d3ca;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2ddd6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4db;
  font-size: 14px;
  font-family: inherit;
}

footer {
  padding: 32px 40px;
  background: #f0e9e1;
  color: #4d4d4d;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #2c3a4f;
  color: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  background: #fff;
  color: #2c3a4f;
}

.page-hero {
  background: #fff;
}

.page-hero .hero-image {
  height: 320px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  header,
  .section,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
