* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #201a17;
  background: #fbf9f6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px 10px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #c7855a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 18px 40px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 18px;
  width: 100%;
}

.hero-title {
  font-size: 32px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #c7855a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #c7855a;
  color: #c7855a;
  background: transparent;
  cursor: pointer;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 18px;
}

.section.alt {
  background: #f2ece6;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.section-lead {
  margin: 0;
  max-width: 560px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(24, 18, 13, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card strong {
  font-size: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-cta {
  color: #c7855a;
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border-left: 4px solid #c7855a;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c7855a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 32px rgba(24, 18, 13, 0.08);
}

.pricing-card h4 {
  margin: 0;
  font-size: 18px;
}

.price-tag {
  font-size: 22px;
  color: #c7855a;
  font-weight: 700;
}

.form-block {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(24, 18, 13, 0.1);
}

.form-block label {
  font-size: 14px;
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4c6ba;
  font-size: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-note {
  font-size: 12px;
  color: #6d5d54;
}

.cta-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  background: #201a17;
  color: #fff;
  align-items: flex-start;
}

.cta-bar a {
  color: #fff;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #c7855a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(24, 18, 13, 0.2);
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 32px 18px;
  background: #171210;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(24, 18, 13, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2ece6;
  font-size: 12px;
  font-weight: 600;
}

.list-tight {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.simple-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(24, 18, 13, 0.08);
}

.legal-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 768px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px 10px;
  }

  .hero {
    padding: 40px 60px 60px;
  }

  .section,
  .cta-bar,
  .footer {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1;
    padding-right: 20px;
  }

  .hero-visual {
    flex: 1.1;
    min-height: 360px;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .pricing-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: 1 1 240px;
  }

  .story-block {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .story-card {
    flex: 1 1 240px;
  }

  .benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 220px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 30px;
  }

  .cookie-banner {
    right: auto;
    max-width: 460px;
  }
}
