* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6%;
  background: #f1efe8;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  background: #2b2b2b;
  color: #f7f6f2;
  align-self: flex-start;
}

.section {
  padding: 60px 6%;
}

.section.soft {
  background: #ffffff;
}

.section.dark {
  background: #1f242e;
  color: #f9f5ef;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.hero {
  background: #e9e4da;
  position: relative;
  overflow: hidden;
}

.hero .hero-image {
  background: #d9d3c5;
  border-radius: 18px;
  overflow: hidden;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
}

.kicker {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6d6258;
}

.section-title {
  font-size: 34px;
  margin: 12px 0 18px;
}

.lead {
  font-size: 18px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2b2b2b;
  color: #f7f6f2;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #2b2b2b;
  border-color: #2b2b2b;
}

.btn.light {
  background: #f7f6f2;
  color: #2b2b2b;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #5f5b55;
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b6;
  font-size: 15px;
  font-family: inherit;
  background: #fbfaf8;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.footer {
  padding: 40px 6%;
  background: #111318;
  color: #f7f6f2;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  margin-top: 12px;
}

.footer .disclaimer {
  font-size: 13px;
  color: #c9c3ba;
  max-width: 900px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e8cfa8;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-frame {
  background: #d6d0c5;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.background-panel {
  background: #d9d3c5;
  border-radius: 18px;
  padding: 32px;
  color: #1a1a1a;
}

.background-panel.dark {
  background: #2b2b2b;
  color: #f7f6f2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0e8db;
  font-size: 13px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-bg {
  background-image: url("https://images.unsplash.com/photo-1453945619913-79ec89a82c51?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.content-width {
  max-width: 1100px;
  margin: 0 auto;
}

.muted {
  color: #6f6b64;
}

.center {
  text-align: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 840px) {
  .section-title {
    font-size: 28px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
