* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1d;
  background: #f7f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  background: #f7f3ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  display: block;
  font-size: 0.82rem;
  color: #7a6060;
  margin-top: 8px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 32px 6vw 60px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-media .image-frame {
  background: #e4d6cf;
  padding: 16px;
}

.hero-media .overlap-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(24, 16, 16, 0.15);
  max-width: 260px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  background: #1b1b1d;
  color: #ffffff;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b1b1d;
  color: #1b1b1d;
}

.section {
  padding: 64px 6vw;
}

.section-muted {
  background: #efe7e0;
}

.section-accent {
  background: #1b1b1d;
  color: #f7f3ef;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1 1 300px;
  max-width: 520px;
}

.asym-media {
  flex: 1 1 320px;
}

.offset-block {
  margin-left: 8vw;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(28, 18, 20, 0.08);
}

.split-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.panel-image {
  background: #dfdad5;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(20, 14, 16, 0.08);
}

.card-image {
  background: #e1d4cc;
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  margin: 16px 0;
}

.price-tag {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8b8b0;
  background: #ffffff;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: #5b5151;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #1b1b1d;
  color: #f7f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #d7c9c3;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffedd8;
  color: #1b1b1d;
  padding: 12px 16px;
  border-radius: 24px;
  box-shadow: 0 10px 26px rgba(24, 16, 16, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 14, 16, 0.15);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid #1b1b1d;
  background: #1b1b1d;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: #1b1b1d;
}

.simple-hero {
  padding: 48px 6vw 40px;
}

.simple-hero h1 {
  margin-bottom: 16px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-page {
  max-width: 820px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.6);
}

.background-panel .section-content {
  position: relative;
  z-index: 1;
}

.image-frame {
  background: #dfd5ce;
}

@media (max-width: 860px) {
  .hero-media .overlap-card {
    position: static;
    margin-top: 18px;
  }

  .offset-block {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 90px;
  }
}
