* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1d1a;
  background: #fbf7f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #fefbf7;
  border-bottom: 1px solid #e7ded4;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6vw 90px;
  background: url("assets/hero-bg.svg") center/cover no-repeat;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  max-width: 640px;
}

.hero-lead {
  max-width: 540px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #c7552f;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #c7552f;
  border: 1px solid #c7552f;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #f3ede5;
}

.section.dark {
  background: #2a221b;
  color: #fef8f1;
}

.section.texture {
  background: url("assets/texture.svg") center/cover no-repeat;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #9b5d43;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fffdf9;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(40, 28, 16, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.alt {
  background: #fef2e6;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3d7c8;
  font-size: 0.85rem;
  color: #6b3a28;
  width: fit-content;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight {
  background: #fff2da;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #c7552f;
  padding-left: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #fffaf3;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(35, 23, 13, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8c7b8;
  font-size: 1rem;
  background: #fff;
}

.inline-link {
  color: #c7552f;
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1c1712;
  color: #f7efe5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f3b760;
  color: #3a2516;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(42, 22, 10, 0.2);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fffaf3;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(35, 22, 12, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #c7552f;
  background: transparent;
  color: #c7552f;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: #c7552f;
  color: #fff;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing-grid {
    flex-direction: row;
  }

  .card-row .card,
  .pricing-grid .card {
    flex: 1;
  }
}
