* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1b18;
  background: #f8f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f4ede6;
  border-bottom: 1px solid #e1d6cc;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-cta {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1e1b18;
  color: #fefaf6;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 60px 6vw 40px;
  gap: 30px;
  background: linear-gradient(120deg, rgba(248, 244, 240, 0.96), rgba(248, 244, 240, 0.7)), url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  max-width: 720px;
}

.hero p {
  max-width: 620px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: #1e1b18;
  color: #fefaf6;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e1b18;
  background: transparent;
  cursor: pointer;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 70px 6vw;
  gap: 30px;
}

.section.alt {
  background: #fffaf4;
}

.section.dark {
  background: #1e1b18;
  color: #fefaf6;
}

.story-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-columns .card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #fefaf6;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(27, 22, 18, 0.08);
}

.card.dark {
  background: #2b2520;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .image-block {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.split .image-block span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: rgba(30, 27, 24, 0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-left: 4px solid #8a6f5a;
  background: #f2e7dc;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #fdf7f0;
  border-radius: 18px;
  border: 1px solid #e6d8ca;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e1d6cc;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fffaf4;
  border-radius: 18px;
  border: 1px solid #eadfd5;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fdf6ee;
  border-radius: 28px;
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c9b9;
  background: #fff;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  color: #8a6f5a;
  text-decoration: underline;
}

.footer {
  padding: 40px 6vw;
  background: #191614;
  color: #f6eee6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1d6cc;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 50;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 50px 6vw 20px;
}

.simple-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 6vw 60px;
}

.simple-layout .info-card {
  padding: 22px;
  background: #fffaf4;
  border-radius: 18px;
  border: 1px solid #eadfd5;
}

@media (min-width: 860px) {
  .story-columns {
    flex-direction: row;
    align-items: flex-start;
  }

  .story-columns .card-row {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-row {
    flex: 1 1 45%;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 45%;
  }

  .form-section {
    flex-direction: row;
  }

  .form-section > div {
    flex: 1;
  }
}
