*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f1f1f;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #efe8e0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-weight: 600;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a6f56;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 80px 6vw;
  gap: 40px;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: #5c4b3b;
  background-size: cover;
  background-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
  background: rgba(20, 16, 12, 0.6);
  padding: 28px;
  border-radius: 18px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f2c9a0;
  color: #3a2715;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 70px 6vw;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #2c251f;
  color: #f8f3ee;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.card {
  background: #fdf9f5;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.inline-image {
  width: 100%;
  height: 340px;
  border-radius: 18px;
  background: #ded2c5;
}

.highlight {
  font-size: 20px;
  font-weight: 500;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: #e8dccf;
  color: #5b4634;
  font-size: 13px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: #d8c6b6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ghost-link {
  font-weight: 600;
  text-decoration: underline;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f4ece4;
}

.pricing-price {
  font-weight: 600;
  font-size: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #d4c6b7;
  background: #fffdfa;
  font-weight: 600;
  cursor: pointer;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.form-wrapper label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5c7b7;
  font-size: 14px;
}

.submit-btn {
  background: #7c573a;
  color: #fff8f1;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f2c9a0;
  color: #3a2715;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 50px 6vw;
  background: #1f1a15;
  color: #efe8df;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-note {
  font-size: 13px;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #7c573a;
  background: #fef6ee;
  cursor: pointer;
}

.disclaimer {
  font-size: 13px;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 8px;
}

@media (min-width: 860px) {
  .split-row,
  .split-row.reverse {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-button {
    flex: 1 1 calc(50% - 16px);
  }
}
