* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1b;
  background: #f8f6f2;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1d1d1b;
  background: #1d1d1b;
  color: #f8f6f2;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1d1d1b;
}

.btn-accent {
  background: #2a6f4b;
  border-color: #2a6f4b;
}

.link-cta {
  font-weight: 600;
  text-decoration: underline;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 8vw 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1e6d8;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 56px 8vw;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}

.split-media {
  display: flex;
  align-items: stretch;
}

.hero {
  padding-top: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tonal {
  background: #f1e6d8;
}

.accent {
  background: #dfe9e1;
}

.trust-list,
.flow-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  font-style: italic;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.care-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.care-form label {
  font-weight: 600;
}

.care-form input,
.care-form select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #bdb7af;
  font-size: 1rem;
}

.closing {
  background: #ede7df;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 8vw 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

.footer-note {
  font-size: 0.85rem;
  color: #4a473f;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #1d1d1b;
  color: #f8f6f2;
  padding: 20px;
  border-radius: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  max-width: 360px;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-media {
    flex: 1;
  }

  .split-text {
    flex: 1;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
