* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3ee;
  --ink: #2b2320;
  --accent: #8c4b2d;
  --cream: #fff7ee;
  --muted: #6a5b52;
  --line: #e6ddd2;
  --card: #ffffff;
  --shadow: 0 12px 28px rgba(43, 35, 32, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 8vw 16px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  background: var(--cream);
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 48px 8vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.panel.narrow {
  flex: 0.9;
}

.panel.wide {
  flex: 1.1;
}

.panel h1,
.panel h2,
.panel h3 {
  font-weight: 700;
  letter-spacing: -0.4px;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: 18px;
}

.image-box {
  background: #e4d6c9;
  border-radius: 18px;
  overflow: hidden;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.form-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.footer {
  padding: 40px 8vw;
  border-top: 1px solid var(--line);
  background: #fdfaf6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  color: var(--muted);
  max-width: 780px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 360px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-button.secondary {
  background: #fff;
  color: var(--accent);
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.spacer {
  height: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
