* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1b16;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f2ede7;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  padding: 6px 10px;
  background: #1f1b16;
  color: #f7f4f1;
  font-size: 0.8rem;
  border-radius: 999px;
}

.nav-toggle {
  border: 1px solid #1f1b16;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links.is-hidden {
  display: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 30px;
}

.hero-media,
.image-card {
  background-color: #e7ded4;
  border-radius: 20px;
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin: 0 0 18px;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f1b16;
  background: #1f1b16;
  color: #f7f4f1;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: #1f1b16;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: #fffaf5;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(31, 27, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe6dc;
  font-size: 0.85rem;
  font-weight: 600;
}

.quote {
  background: #1f1b16;
  color: #f7f4f1;
  padding: 24px;
  border-radius: 18px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border: 1px solid #d6c9bd;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(31, 27, 22, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8b8a9;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #1f1b16;
  color: #f7f4f1;
  border-radius: 999px;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.footer {
  padding: 32px 6vw;
  background: #efe6dc;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
}

.legal {
  font-size: 0.9rem;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(31, 27, 22, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-hidden {
  display: none;
}

.page-hero {
  padding: 32px 6vw 0;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.info-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(31, 27, 22, 0.08);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1;
    min-width: 220px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
