*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1c1a17;
  background: #f7f3ee;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #ede4da;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 12px;
  background: #f7f3ee;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  background: #fff;
  transform: translateX(4px);
}

.sidebar-note {
  font-size: 14px;
  line-height: 1.5;
  color: #4a433b;
}

.main {
  flex: 1;
  padding: 32px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sticky-cta {
  align-self: flex-end;
  position: sticky;
  top: 18px;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c1a17;
  color: #fdf9f4;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-light {
  background: #fdf9f4;
  color: #1c1a17;
  border: 1px solid #d9cbbd;
  box-shadow: none;
}

.btn-accent {
  background: #8a4f2e;
}

.section {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-muted {
  background: #f1e7dc;
}

.section-dark {
  background: #1c1a17;
  color: #fdf9f4;
}

.section-header h1,
.section-header h2,
.section-header h3 {
  margin: 0;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-row .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-row .visual {
  flex: 1 1 280px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  background: #f7f3ee;
  border-radius: 999px;
  font-size: 13px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  background: #fdf9f4;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 0 0 1px rgba(145, 126, 108, 0.15);
}

.card img {
  border-radius: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 18px;
  background: #f7f3ee;
  border-radius: 18px;
}

.step span {
  font-weight: 700;
  color: #8a4f2e;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 20px;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.price-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e7dbcf;
}

.price-card strong {
  font-size: 20px;
}

.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-strip img {
  flex: 1 1 160px;
  min-height: 120px;
  object-fit: cover;
}

.form-wrap {
  background: #fdf9f4;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e2d3c2;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7c6b5;
  font-size: 15px;
  font-family: inherit;
}

.inline-cta {
  color: #8a4f2e;
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: #5a5249;
}

.footer a {
  text-decoration: underline;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #f7f3ee;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 340px;
  background: #1c1a17;
  color: #fdf9f4;
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #fdf9f4;
  color: #1c1a17;
}

.cookie-reject {
  background: #8a4f2e;
  color: #fdf9f4;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(241, 231, 220, 0.9)), url("https://images.unsplash.com/photo-1484981184820-2e84ea0af397?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-banner {
  background: linear-gradient(120deg, #ede4da, #fff);
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main {
    padding: 24px 6vw 48px;
  }

  .sticky-cta {
    align-self: flex-start;
  }
}
