* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --ink: #2b2a28;
  --muted: #6e6a64;
  --accent: #9c6b3d;
  --accent-dark: #7a512b;
  --line: #e1dbd2;
  --soft: #f0ebe4;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent-dark);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 520px;
}

.hero-content,
.hero-media {
  flex: 1 1 420px;
  min-height: 420px;
}

.hero-content {
  padding: 60px 7%;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-media {
  background: #d8cbb9;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 60px 7%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 380px;
  background: var(--surface);
  padding: 28px;
  border: 1px solid var(--line);
}

.panel-image {
  flex: 1 1 380px;
  background: #d7c9b5;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-image {
  background: #d9cbbb;
  min-height: 180px;
}

.card .card-image img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  padding: 16px;
  background: var(--soft);
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 40px 7%;
  background: #2f2b27;
  color: #f5f0ea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5f0ea;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 10px;
  display: none;
  max-width: 360px;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 9;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-hero {
  padding: 60px 7% 30px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.simple-hero h1 {
  margin-bottom: 12px;
}

.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 7% 60px;
}

.content-split .panel {
  flex: 1 1 360px;
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--line);
}

.note {
  background: var(--soft);
  padding: 16px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
