* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1f22;
  background: #f6f2ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f6f2ee;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #1d1f22;
  color: #f6f2ee;
}

.hero {
  padding-top: 40px;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.alt {
  background: #efe7df;
}

.section.dark {
  background: #1d1f22;
  color: #f6f2ee;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.split-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  color: #7a6c60;
}

.title-xl {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.title-lg {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-button {
  padding: 12px 24px;
  border-radius: 999px;
  background: #c1583b;
  color: #fef5ef;
  font-weight: 600;
}

.cta-outline {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(25, 23, 21, 0.08);
}

.card.dark {
  background: #2b2f35;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  box-shadow: 0 14px 28px rgba(15, 12, 10, 0.1);
}

.form-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d2cc;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1d1f22;
  color: #f6f2ee;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(12, 10, 8, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  background: #1d1f22;
  color: #f6f2ee;
  font-size: 0.85rem;
}

.cookie-actions .reject {
  background: #c9c2bd;
  color: #1d1f22;
}

.site-footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1d1f22;
  color: #f6f2ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.muted {
  color: #7a6c60;
}

.split-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-columns {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .image-stack {
    flex-direction: row;
  }
}
