* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f7f4f1;
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6vw 40px;
}

.hero-intro p {
  max-width: 580px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
  background: #fff;
}

.split-section.alt {
  background: #efe9e2;
}

.split-section.dark {
  background: #1f1f1f;
  color: #f7f4f1;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a6b4f;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #f7f4f1;
  font-weight: 600;
  border: none;
}

.cta-button.light {
  background: #f7f4f1;
  color: #1b1b1b;
}

.cta-link {
  font-weight: 600;
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e4d9cd;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #8a6b4f;
}

.quote {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #8a6b4f;
  border-radius: 10px;
}

.form-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e2d8cc;
  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: 8px;
  border: 1px solid #cdbdad;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 6vw 40px;
  background: #1f1f1f;
  color: #f7f4f1;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #8a6b4f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  padding: 18px;
  display: none;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-chip {
  background: #f7f4f1;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.two-column-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e4d9cd;
}

.small {
  font-size: 0.9rem;
  color: #6b6055;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: stretch;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .hero-intro {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .two-column-list {
    flex-direction: row;
    gap: 20px;
  }

  .cookie-banner.show {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
