*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: #2b2624;
  background: #faf7f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 18px 20px;
  background: #f5efe8;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #8b5e4d;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 20px 48px;
  background: linear-gradient(135deg, #f0e6dc, #ffffff);
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #8b5e4d;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section {
  padding: 42px 20px;
}

.section.alt {
  background: #f1ebe3;
}

.section.slim {
  padding: 30px 20px;
}

.section h2 {
  font-size: 1.6rem;
  margin: 0 0 16px;
}

.section h3 {
  margin: 0 0 10px;
}

.section p {
  margin: 0 0 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3d6c4;
  font-size: 0.85rem;
  font-weight: 600;
}

.inline-link {
  color: #8b5e4d;
  font-weight: 600;
  border-bottom: 1px solid #8b5e4d;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.storyline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8b5e4d;
  margin-top: 6px;
}

.quote {
  background: #fff6ef;
  border-left: 4px solid #8b5e4d;
  padding: 16px;
  font-style: italic;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #efe4da;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #8b5e4d;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  padding: 12px 18px;
  background: #2b2624;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.cta-button.light {
  background: #ffffff;
  color: #2b2624;
  border: 1px solid #2b2624;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e7d9cd;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9c9bd;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5efe8;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #8b5e4d;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 30px 20px;
  background: #f5efe8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #2b2624;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f3d6c4;
  color: #2b2624;
}

.cookie-reject {
  background: #fff;
  color: #2b2624;
}

.page-hero {
  padding: 32px 20px;
  background: #f1ebe3;
}

.page-hero h1 {
  margin: 0 0 8px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-item {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .cta-row {
    flex-direction: row;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
  }
}
