/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1d1d1d;
  text-decoration: none;
}

header {
  padding: 28px 6vw 18px;
  background: #f6f4f1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #5b5b5b;
  border-left: 3px solid #1d1d1d;
  padding-left: 12px;
}

.page {
  padding: 0 6vw 70px;
}

.section {
  margin: 36px 0;
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
  position: relative;
}

.section.alt {
  background: #f0ede8;
}

.section.dark {
  background: #1f2623;
  color: #f5f4f1;
}

.section.flex {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.section.flex.reverse {
  flex-direction: row-reverse;
}

.section .column {
  flex: 1 1 260px;
}

.offset-block {
  position: relative;
  left: -16px;
  margin-right: -16px;
}

.offset-block.right {
  left: 0;
  right: -18px;
  margin-left: -18px;
}

.image-frame {
  background: #d9d2c6;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.small {
  max-width: 360px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1caa6;
  font-size: 12px;
  font-weight: 600;
}

.headline {
  font-size: 32px;
  margin: 12px 0 10px;
}

.subline {
  font-size: 18px;
  color: #3a3a3a;
}

.dark .subline {
  color: #e0e0d8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1d1d;
  color: #f6f4f1;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1d;
  border: 2px solid #1d1d1d;
}

.btn.light {
  background: #f1caa6;
  color: #1f2623;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.spacer-sm {
  height: 18px;
}

.pill {
  background: #e7e1d8;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 10px;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: #1f2623;
}

.card .btn {
  margin-top: 14px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap select,
.form-wrap input,
.form-wrap textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8c1b7;
  font-size: 15px;
  font-family: inherit;
}

.form-wrap button {
  width: fit-content;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 0 auto 18px;
  width: fit-content;
  z-index: 4;
}

.footer {
  padding: 40px 6vw 60px;
  background: #151a18;
  color: #e4e0d8;
}

.footer a {
  color: #e4e0d8;
}

.footer-columns {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer .column {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #c7c0b6;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 14px;
  color: #3c3c3c;
}

.hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .column {
  flex: 1 1 280px;
}

.hero .image-frame {
  min-height: 320px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1d1d1d;
  padding-left: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-narrow {
  max-width: 820px;
}
