* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #f6f3ef;
  border-bottom: 1px solid #e0dad3;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.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;
  color: #584e45;
  padding: 6px 10px;
  border: 1px solid #c7bfb6;
  border-radius: 999px;
  background: #efe8df;
}

main {
  flex: 1;
}

.section {
  padding: 72px 0;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1f1f1f;
  color: #fefcf9;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.col-wide {
  flex: 1 1 58%;
}

.col-narrow {
  flex: 1 1 36%;
}

.offset-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.dark .offset-card {
  background: #2c2c2c;
}

.image-frame {
  background-color: #d9d0c6;
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
}

.image-frame.tall {
  height: 420px;
}

.image-frame.small {
  height: 260px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d8cfc4;
  background: #fdfaf6;
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #fefcf9;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: inherit;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dark .card {
  background: #2c2c2c;
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.quote {
  background: #efe8df;
  padding: 18px;
  border-radius: 14px;
  font-style: italic;
}

.dark .quote {
  background: #3a3a3a;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bd;
  font-size: 14px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1f1f1f;
  color: #fefcf9;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 50;
}

footer {
  background: #141414;
  color: #fefcf9;
  padding: 40px 0;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cfcfcf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

.notice {
  background: #efe8df;
  padding: 16px;
  border-radius: 12px;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.meta-item {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.dark .meta-item {
  background: #2f2f2f;
}

.spaced-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .offset-card {
    transform: none;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
