* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1f24;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 20px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f6f2;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1d1f24;
}

.hero {
  background: linear-gradient(120deg, #e6efe7, #fdf7ea);
}

.split {
  display: flex;
  flex-direction: column;
  padding: 40px 6vw;
  gap: 24px;
}

.split.reverse {
  flex-direction: column;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1d1f24;
  color: #f7f6f2;
  font-size: 0.85rem;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1f24;
  background: #1d1f24;
  color: #f7f6f2;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: #1d1f24;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.layered {
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border-radius: 18px;
  padding: 18px;
  background: #f0f1f4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card strong {
  font-size: 1.05rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.quote {
  padding: 18px;
  border-left: 3px solid #1d1f24;
  background: #fdf7ea;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6c8d1;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.muted {
  color: #5c5f66;
}

.section-accent {
  background: #1d1f24;
  color: #f7f6f2;
}

.section-accent .btn.secondary {
  border-color: #f7f6f2;
  color: #f7f6f2;
}

.section-accent .inline-link {
  border-bottom-color: #f7f6f2;
}

footer {
  padding: 32px 6vw 80px;
  background: #ece9e2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffb347;
  color: #1d1f24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1d1f24;
  background: #1d1f24;
  color: #f7f6f2;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1d1f24;
}

.page-title {
  font-size: 2.2rem;
  line-height: 1.2;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
    padding: 64px 8vw;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .page-title {
    font-size: 2.8rem;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 220px;
  }
}
