/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1b19;
  background-color: #f7f4f1;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.muted {
  color: #5e5a54;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe5da;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  background: #f2ede7;
  border-bottom: 1px solid #e3d8cc;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  background: #efe5da;
}

.ad-label {
  font-size: 12px;
  color: #6b5b4b;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px dashed #c8b7a6;
  background: #fbf7f2;
}

/* Hero */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #e7d8cc;
  border-radius: 20px;
  overflow: hidden;
}

.hero-visual .image-frame {
  box-shadow: 0 24px 60px rgba(42, 32, 24, 0.18);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #b79678;
  background: #b79678;
  color: #fff;
  font-weight: 600;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #b79678;
  color: #6b4d36;
  background: #f7f1eb;
  font-weight: 600;
}

/* Funnel sections */
.section {
  padding: 70px 0;
}

.section.alt {
  background: #efe7df;
}

.section.dark {
  background: #2d2620;
  color: #f5eee8;
}

.section.dark .muted {
  color: #d4c7bd;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eadfd4;
}

.card.dark {
  background: #3b3129;
  border-color: #4b3d33;
}

.card-title {
  font-weight: 600;
  font-size: 18px;
}

.quote {
  padding: 18px;
  border-left: 4px solid #b79678;
  background: #f9f5f0;
  border-radius: 12px;
}

.price-tag {
  font-size: 20px;
  font-weight: 700;
  color: #6b4d36;
}

/* Forms */
.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #eadfd4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8c8b8;
  font-size: 15px;
  background: #fff;
}

button {
  cursor: pointer;
}

.submit-btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #7f5b3d;
  background: #7f5b3d;
  color: #fff;
  font-weight: 600;
}

/* Sticky CTA */
.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eadfd4;
  padding: 16px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  margin-top: auto;
  background: #1f1a15;
  color: #f1e6dc;
  padding: 40px 0;
}

.footer a {
  color: #f1e6dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #d6c7bc;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(30, 20, 10, 0.2);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #7f5b3d;
  background: #7f5b3d;
  color: #fff;
  font-weight: 600;
}

.cookie-btn.secondary {
  background: #f2ece6;
  color: #6b4d36;
}

/* Utility */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 320px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2e7dc;
  font-size: 13px;
}
