* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1c1b19;
  background: #fff9f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 8%;
  background: #fff;
  border-bottom: 1px solid #f0e2d4;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #e25a1f;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 64px 8% 48px;
  color: #fff;
  background: linear-gradient(135deg, rgba(31, 20, 16, 0.9), rgba(90, 46, 24, 0.85)),
    url("https://images.unsplash.com/photo-1506368083636-6defb67639ef?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  max-width: 640px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e25a1f;
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border-color: #f4c6a8;
  color: #fff;
}

.section {
  padding: 56px 8%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: #fff3e6;
}

.section.deep {
  background: #1e150f;
  color: #fff;
}

.section h2 {
  font-size: 1.8rem;
  line-height: 1.25;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 35px rgba(55, 32, 15, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #2d1d14;
  color: #fff;
  box-shadow: none;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: square;
}

.testimonial {
  font-style: italic;
  border-left: 3px solid #e25a1f;
  padding-left: 14px;
}

.inline-cta {
  font-weight: 700;
  color: #e25a1f;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  color: #e25a1f;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(41, 23, 12, 0.12);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5d2c1;
  width: 100%;
  font-family: inherit;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1c1b19;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  background: #0f0b08;
  color: #f4e7dc;
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer a {
  color: #f4e7dc;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #e25a1f;
  color: #fff;
}

.cookie-actions .reject {
  background: #f4e7dc;
  color: #1c1b19;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 520px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-top {
    flex: 1;
  }
}
