* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1b1b1b;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.page {
  width: 100%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: #f6f2ee;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: #5a4c40;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.hero {
  padding: 48px 8% 32px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 340px;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 340px;
  min-width: 280px;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: #3b332c;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: #1b1b1b;
  color: #f6f2ee;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
}

.btn.alt {
  background: #e0c9b8;
  color: #1b1b1b;
}

.link-cta {
  color: #7a4e2d;
  font-weight: 600;
}

.image-frame {
  background: #e9ddd4;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section {
  padding: 52px 8%;
}

.section.alt {
  background: #fff8f2;
}

.section h2 {
  font-size: 28px;
  margin: 0 0 16px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  background: #1b1b1b;
  color: #f6f2ee;
  padding: 6px 12px;
  font-size: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eadfd6;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #7a4e2d;
}

.banner {
  background: #2b2420;
  color: #f6f2ee;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.banner .btn {
  background: #f6f2ee;
  color: #2b2420;
}

.form-card {
  background: #fff;
  padding: 24px;
  border: 1px solid #eadfd6;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px;
  border: 1px solid #d9cbc1;
  font-size: 14px;
}

.form-status {
  font-size: 13px;
  color: #7a4e2d;
  min-height: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #7a4e2d;
  color: #fff8f2;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 13px;
}

.footer {
  padding: 32px 8%;
  background: #1b1b1b;
  color: #f6f2ee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f6f2ee;
}

.footer .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff8f2;
  border-top: 1px solid #d9cbc1;
  padding: 16px 8%;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 5;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.split-note {
  font-size: 13px;
  color: #5a4c40;
}

.note-box {
  background: #efe3da;
  padding: 16px;
  border-left: 4px solid #7a4e2d;
}

.hero-bg {
  background: #efe3da;
}

.bg-insight {
  background: #efe3da url("https://images.unsplash.com/photo-1475724017904-b712052c192a?w=1400&q=80") center/cover no-repeat;
  color: #1b1b1b;
}

.bg-insight .note-box {
  background: rgba(255, 248, 242, 0.92);
}
