* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1c1a;
  background: #f6f2ed;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: #1d1c1a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw 40px;
}

.hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 48px 36px;
  background: #11100f;
  color: #fefbf7;
  border-radius: 28px;
  overflow: hidden;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.35;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.hero-title {
  font-size: 2.3rem;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1c1a;
  background: #1d1c1a;
  color: #fefbf7;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: #fefbf7;
  border-color: #fefbf7;
}

.btn.light {
  background: #fefbf7;
  color: #1d1c1a;
  border-color: #fefbf7;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: #171614;
  color: #fefbf7;
  padding: 48px 6vw;
  border-radius: 32px;
  margin: 0 4vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.story-card {
  background: #fefbf7;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.tag {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #78716c;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  background: #fff8f1;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 16px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fefbf7;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: #fefbf7;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: #fefbf7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #1d1c1a;
  color: #fefbf7;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #11100f;
  color: #fefbf7;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip img {
  width: 100%;
  border-radius: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fefbf7;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-header {
  padding: 40px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

@media (min-width: 860px) {
  .hero {
    padding-bottom: 80px;
  }

  .split,
  .split.reverse {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .image-strip img {
    width: calc(33.333% - 8px);
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-row {
    flex: 1 1 220px;
  }
}
