* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1e20;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.split-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #fff;
  border-bottom: 1px solid #e6e1dc;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: #6b5f53;
  text-align: right;
}

.section {
  margin: 60px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 460px;
  min-width: 280px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(36, 26, 18, 0.08);
}

.panel.soft {
  background: #f0ebe4;
}

.panel.dark {
  background: #1d1e20;
  color: #f9f6f2;
}

.media {
  flex: 1 1 460px;
  min-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d0c7;
  min-height: 320px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #7a6f64;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1e20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d1e20;
  color: #fff;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: #1d1e20;
}

.btn.alt {
  background: #e6a04a;
  border-color: #e6a04a;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4ddd5;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 250px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(36, 26, 18, 0.08);
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 600;
  margin-top: 8px;
  color: #b3532f;
}

.quote {
  font-style: italic;
  font-size: 1.02rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c7;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  background: #1d1e20;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  border: 1px solid #1d1e20;
}

.footer {
  background: #1d1e20;
  color: #f9f6f2;
  padding: 36px 24px;
}

.footer .nav {
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: #c9bfb3;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(36, 26, 18, 0.16);
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page .section {
  margin: 32px 0;
}

.legal-page ul {
  margin-left: 18px;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column .panel {
  flex: 1 1 320px;
}
