* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f6f2ee;
  color: #1e1b18;
  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;
}

.sidebar {
  background: #11100f;
  color: #f7f1eb;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e86b42;
  color: #fffaf5;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(232, 107, 66, 0.25);
}

.btn.secondary {
  background: #f2d7c9;
  color: #3c2d24;
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #e86b42;
  color: #e86b42;
  box-shadow: none;
}

.content {
  flex: 1;
  padding: 0 18px 120px;
}

.section {
  padding: 42px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #fff9f5;
  padding: 42px 18px;
  border-radius: 28px;
}

.section.dark {
  background: #1e1b18;
  color: #f7f2ed;
  padding: 42px 18px;
  border-radius: 28px;
}

.section.soft {
  background: #f2d7c9;
  padding: 42px 18px;
  border-radius: 28px;
}

.section h2 {
  margin: 0;
  font-size: 28px;
}

.section p {
  margin: 0;
}

.hero {
  gap: 28px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero .hero-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.16);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .split-text {
  flex: 1;
}

.split .split-media {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff9f5;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.quote {
  background: #1e1b18;
  color: #f7f2ed;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fef6f0;
  padding: 18px;
  border-radius: 18px;
}

.badge {
  background: #e86b42;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  min-width: 90px;
  text-align: center;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
}

.comparison-row span {
  font-weight: 600;
}

.highlight {
  background: #f2d7c9;
  padding: 4px 10px;
  border-radius: 999px;
}

.inline-link {
  color: #e86b42;
  font-weight: 600;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 22px;
  height: 220px;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.service-item .price {
  font-size: 20px;
  font-weight: 700;
  color: #c24f2e;
}

.service-item .service-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8c6bb;
  font-size: 15px;
  font-family: inherit;
  background: #fffdfb;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #e4d6cc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1e1b18;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

.two-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: #fdf4ee;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
  }

  .content {
    padding: 0 48px 120px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip img {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .two-columns {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }
}
