* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  background: #efe9e3;
  padding: 18px 32px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  background: #e4d6c7;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background-color: #5c5246;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 90px 32px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 48px;
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 2.6rem;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 22px;
  background: #f0c067;
  color: #1f1f1f;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.section {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 70px 32px;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h2 {
  margin-top: 0;
}

.media-frame {
  background: #d7d0c8;
  padding: 16px;
}

.media-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.texture {
  background-color: #d9d2c7;
  background-image: url("https://images.unsplash.com/photo-1481277542470-605612bd2d61?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.texture .split-text {
  background: rgba(255, 255, 255, 0.88);
  padding: 28px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e0da;
}

.card .media-frame {
  padding: 8px;
  background: #d7d0c8;
}

.card img {
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
}

.cta-block {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-link {
  background: #1f1f1f;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.form-section {
  background: #f0ece8;
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea,
button {
  font: inherit;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c1b7;
  background: #ffffff;
}

button {
  background: #f0c067;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  background: #1f1f1f;
  color: #ffffff;
}

.footer {
  padding: 40px 32px;
  background: #e6dfd7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #3b3b3b;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d3ccc2;
  padding: 18px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.banner-visible {
  display: block;
}

.simple-hero {
  padding: 70px 32px 40px;
  background: #efe9e3;
}

.simple-hero h1 {
  margin: 0;
}

.page-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.page-hero img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.legal-section {
  padding: 40px 32px 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 800px) {
  .hero {
    padding: 60px 24px;
  }

  .hero-overlay {
    padding: 32px;
  }

  .section {
    padding: 50px 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
