* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.main-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #5c5c5c;
  border: 1px solid #d7d1c9;
  padding: 6px 10px;
  border-radius: 999px;
  background: #faf8f5;
}

.hero {
  padding: 24px 6vw 64px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split .split-media {
  flex: 1 1 320px;
}

.headline {
  font-size: 42px;
  margin: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1c1c1c;
}

.btn.ghost {
  background: #f6f4f1;
  border-color: #a59f97;
  color: #1c1c1c;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: #efeae4;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #6d655c;
  margin: 0 0 12px;
}

.media-frame {
  background: #e1d8cf;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.media-frame.tall {
  min-height: 360px;
}

.media-frame.wide {
  min-height: 220px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  font-size: 20px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-size: 14px;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bc;
  font-size: 15px;
  font-family: inherit;
}

.lead-form button {
  align-self: flex-start;
}

.footer {
  padding: 48px 6vw;
  background: #1c1c1c;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d7d1c9;
  line-height: 1.6;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 6vw;
  background: rgba(246, 244, 241, 0.95);
  border-top: 1px solid #d7d1c9;
  display: flex;
  justify-content: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 72px;
  background: #ffffff;
  border: 1px solid #d7d1c9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 16px 18px;
  border-radius: 14px;
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.legal-text {
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 860px) {
  .headline {
    font-size: 34px;
  }

  .sticky-cta {
    position: static;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
