* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f2a2e;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e5e1db;
  padding: 18px 6vw;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #efe8dd;
  color: #3a3834;
  padding: 6px 10px;
  border-radius: 18px;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #6b706b;
}

.headline {
  font-size: 36px;
  margin: 12px 0 16px;
}

.lead {
  font-size: 18px;
  color: #374248;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  border: none;
  background: #1f2a2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: #1f2a2e;
  border: 1px solid #1f2a2e;
}

.inline-link {
  text-decoration: underline;
}

.media {
  background: #d9d0c5;
  border-radius: 20px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.stat {
  flex: 1 1 180px;
  background: #fff;
  border: 1px solid #e5e1db;
  border-radius: 16px;
  padding: 16px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4dfd8;
  padding: 16px;
}

.service-media {
  flex: 1 1 140px;
  background: #d7cdc1;
  border-radius: 14px;
  overflow: hidden;
  min-height: 140px;
}

.service-body {
  flex: 2 1 220px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  margin-top: 8px;
}

.banner-section {
  background: #f1ebe2;
  position: relative;
}

.background-layer {
  background-image: url("https://images.unsplash.com/photo-1450101215322-bf5cd27642fc?w=1400&q=80");
  background-color: #6b6a66;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #fdfaf6;
}

.background-layer .button {
  background: #fdfaf6;
  color: #1f2a2e;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e5e1db;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bd;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #6b706b;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.footer {
  background: #1f2a2e;
  color: #f5f0ea;
  padding: 40px 6vw;
}

.footer a {
  color: #f5f0ea;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5e1db;
  max-width: 320px;
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.legal {
  max-width: 820px;
}

@media (max-width: 860px) {
  .headline {
    font-size: 28px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
