* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f2ed;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  gap: 16px;
  background-color: #fff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 12px;
  color: #6d6a66;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5b534c;
  max-width: 220px;
  text-align: right;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #efe6dc;
}

.section-split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1 1 320px;
  background-color: #d9d1c7;
  padding: 14px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.headline {
  font-size: 34px;
  line-height: 1.2;
}

.subheadline {
  font-size: 18px;
  color: #5b534c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background-color: #1f1f1f;
  color: #fff;
  font-size: 14px;
}

.btn.secondary {
  background-color: transparent;
  color: #1f1f1f;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.panel {
  background-color: #fff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.highlight {
  background-color: #f0e8df;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background-color: #dcd1c8;
  padding: 12px;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
}

.testimonial {
  font-style: italic;
  color: #4d4540;
}

.form-wrap {
  background-color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #bfb6ae;
  font-size: 14px;
}

.footer {
  background-color: #1f1f1f;
  color: #f7f3ef;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f3ef;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #d6cfc7;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background-color: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid #1f1f1f;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #fff;
  font-size: 13px;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #1f1f1f;
}

.legal-hero {
  background-color: #efe6dc;
  padding: 50px 6% 24px;
}

.legal-content {
  padding: 30px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-block {
  background-color: #efe6dc;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
