* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background-color: rgba(246, 242, 238, 0.94);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f1f1f;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 84px 6% 72px;
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfbf8;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 21, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background-color: #f8d26a;
  color: #3c2c00;
}

.btn-outline {
  background-color: transparent;
  color: #fdfbf8;
  border-color: #fdfbf8;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background-color: #ffffff;
}

.section.dark {
  background-color: #1f1f1f;
  color: #fdfbf8;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split > div {
  flex: 1;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #e8dfd4;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background-color: #2d2a27;
  color: #fdfbf8;
}

.quote {
  font-style: italic;
  padding: 20px;
  border-left: 4px solid #f8d26a;
  background-color: #fffdf8;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border: 1px solid #d8cdc2;
  border-radius: 18px;
  padding: 20px;
  background-color: #fff8f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7b8a9;
  font-size: 1rem;
  background-color: #fffdfb;
}

button.btn-submit {
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background-color: #1f1f1f;
  color: #fdfbf8;
  font-weight: 600;
  cursor: pointer;
}

.inline-link {
  color: #915f00;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  background-color: #f8d26a;
  color: #3c2c00;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6% 60px;
  background-color: #1f1f1f;
  color: #fdfbf8;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card,
  .card {
    flex: 1;
  }

  .form-wrap {
    max-width: 540px;
  }
}
