* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #1b1d1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1b1d1f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 40px;
  background: #efe8dc;
  border-bottom: 1px solid #d8cfc2;
}

.brand {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #4a4237;
  max-width: 320px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #1b1d1f;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px 60px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #b9b2a7;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 22, 0.45);
}

.hero-content {
  position: relative;
  max-width: 680px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: #f4efe6;
  color: #1b1d1f;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border: 1px solid #d9d0c4;
}

.btn:hover {
  background: #1b1d1f;
  color: #f4efe6;
}

.btn.secondary {
  background: transparent;
  color: #f4efe6;
  border-color: #f4efe6;
}

.btn.secondary:hover {
  background: #f4efe6;
  color: #1b1d1f;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 60px 40px 80px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.section.full {
  flex-direction: column;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #e0d7cc;
}

.section-title {
  font-size: 2rem;
  max-width: 420px;
}

.lead-text {
  max-width: 520px;
  font-size: 1.1rem;
}

.pull-quote {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3c372f;
  max-width: 300px;
}

.image-frame {
  background-color: #ddd3c6;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 280px;
  min-width: 240px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.card {
  background: #fff;
  border: 1px solid #e0d7cc;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 240px;
  min-width: 220px;
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 600;
  color: #84542e;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  padding: 16px;
  border-left: 3px solid #b97a4b;
  background: #f8f4ec;
}

.highlight {
  background: #1b1d1f;
  color: #f4efe6;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight a {
  color: #f4efe6;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e0d7cc;
  flex: 1 1 320px;
}

.form-wrap label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-wrap input,
.form-wrap select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc2;
  width: 100%;
  font-size: 1rem;
}

.form-status {
  font-size: 0.9rem;
  color: #6e4d32;
}

.magazine-banner {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #b6b1a8;
  padding: 40px;
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.magazine-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 31, 0.5);
}

.magazine-banner .banner-content {
  position: relative;
  max-width: 560px;
}

.split-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split-columns > div {
  flex: 1 1 260px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1d1f;
  color: #f4efe6;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.sticky-cta:hover {
  background: #3a3e44;
}

footer {
  background: #efe8dc;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #d8cfc2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-meta {
  font-size: 0.85rem;
  color: #4a4237;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #d8cfc2;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1b1d1f;
  background: transparent;
  cursor: pointer;
}

.cookie-btn.primary {
  background: #1b1d1f;
  color: #f4efe6;
}

.simple-page {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e0d7cc;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 24px 40px;
  }

  main {
    padding: 40px 24px 60px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
