* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --ink: #1d1b19;
  --muted: #6b5f55;
  --accent: #b44a2a;
  --accent-soft: #f1d7c6;
  --card: #ffffff;
  --line: #e7ded6;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  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;
  gap: 64px;
  padding: 32px 6vw 96px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff8f3;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero-visual {
  display: flex;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
}

.section-backdrop {
  background-image: url("https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 32px;
  color: #ffffff;
}

.aside-visual {
  background-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

.hero-card {
  margin-top: -80px;
  margin-left: 6vw;
  max-width: 520px;
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(29, 27, 25, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--ink);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #e9dacf;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.offset-card {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
  top: -22px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #eadfd5;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff8f3;
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 18px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-shell {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 6vw 48px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(29, 27, 25, 0.18);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(29, 27, 25, 0.14);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 34px;
  letter-spacing: -0.5px;
}

.muted {
  color: var(--muted);
}

.highlight {
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .hero-card {
    margin-left: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
