* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --accent: #8a6b3f;
  --accent-dark: #5c4627;
  --soft: #efe7dd;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  background-color: #d9d0c4;
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 72px 6vw;
}

.hero-inner {
  max-width: 560px;
  background: rgba(247, 244, 240, 0.92);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 64px 6vw;
}

.section.soft {
  background: var(--soft);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #d9d0c4;
  border-radius: 18px;
  overflow: hidden;
}

.story {
  max-width: 860px;
  margin: 0 auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd1c5;
  padding-bottom: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
}

.form-wrap {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d3c7bb;
  font-size: 1rem;
  width: 100%;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta span {
  font-size: 0.9rem;
  padding-left: 10px;
  color: var(--muted);
}

.footer {
  background: #11100f;
  color: #f5f1ec;
  padding: 40px 6vw 56px;
}

.footer a {
  color: #f5f1ec;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 24px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.bg-texture {
  background-color: #dcd2c6;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f6f2;
}

.bg-texture .story {
  background: rgba(28, 28, 28, 0.68);
  padding: 32px;
  border-radius: 18px;
}

.highlight {
  background: #fff4e0;
  border-radius: 16px;
  padding: 16px 20px;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero {
    padding: 48px 6vw;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
