* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #faf7f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 20px;
  background: #fff2dc;
}

.hero {
  background: linear-gradient(120deg, #fff6e8 10%, #f5e2c0 70%);
}

.section {
  padding: 64px 6vw;
}

.section.dark {
  background: #1f1b16;
  color: #f7efe5;
}

.section.soft {
  background: #fff7ea;
}

.section.olive {
  background: #f0efe7;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split > * {
  flex: 1;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #b8562c;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.btn.light {
  background: #f7efe5;
  color: #1f1b16;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e9d7b8;
  font-size: 0.8rem;
}

.quote {
  padding: 20px;
  border-left: 4px solid #b8562c;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 8px 14px;
  background: #f3d8b7;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c7b0;
  font-size: 1rem;
  font-family: inherit;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fdf5e8;
  border: 1px solid #eed8b8;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw 48px;
  background: #1f1b16;
  color: #f7efe5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #d67f4b;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #1f1b16;
  color: #f7efe5;
  padding: 18px 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f7efe5;
  color: #1f1b16;
}

.cookie-reject {
  background: transparent;
  color: #f7efe5;
  border: 1px solid #f7efe5;
}

.page-hero {
  background: #f4ead8;
  padding: 56px 6vw;
}

.page-hero h1 {
  margin: 0 0 10px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b8562c;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.notice {
  font-size: 0.9rem;
  color: #5a5046;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .two-column {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .cookie-banner {
    left: auto;
    right: 20px;
    max-width: 420px;
  }
}
