* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2024;
  background: #f6f3ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e4e0db;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: #5b5f66;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: #f2f2f1;
}

.nav a:hover,
.nav a:focus {
  background: #e7e4de;
}

.sidebar-cta {
  padding: 12px 14px;
  border-radius: 14px;
  background: #1e2024;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.05);
}

.section.alt {
  background: #1e2024;
  color: #f5f3ef;
}

.section.soft {
  background: #efe9e1;
}

.section.slim {
  padding: 20px 24px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .visual {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #8a6d4e;
}

.section.alt .eyebrow {
  color: #f1c389;
}

.hero-title {
  font-size: 34px;
  line-height: 1.15;
  margin: 0;
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e2024;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.button.light {
  background: #f2c37f;
  color: #1e2024;
}

.button.outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #f7f4f1;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #2b2e34;
  color: #ffffff;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #8a6d4e;
}

.section.alt .price {
  color: #f1c389;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #f1c389;
  padding: 16px 20px;
  border-radius: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d0c8;
  font-size: 15px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  font-size: 13px;
  color: #5b5f66;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f2c37f;
  color: #1e2024;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  padding: 18px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 9;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta-item {
  flex: 1 1 160px;
  background: #f2f2f1;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-visual {
  background: #f7f1e8;
  border-radius: 22px;
  padding: 18px;
}

.divider {
  height: 1px;
  background: #ded7ce;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e4e0db;
  }

  .content {
    padding: 24px;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
