* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2022;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #f7f4f0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.top-nav a {
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: #1f2022;
  color: #f7f4f0;
}

.button-light {
  background: #f7f4f0;
  border-color: #1f2022;
}

.button-outline {
  border-color: #1f2022;
  color: #1f2022;
  background: transparent;
}

.inline-link {
  border-bottom: 1px solid #1f2022;
  padding-bottom: 2px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 70px 6%;
  align-items: center;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.hero {
  background: #e8e1d8;
}

.highlight {
  background: #f0ece7;
}

.story {
  background: #f7f4f0;
}

.trust {
  background: #e3d7cb;
}

.services-preview {
  background: #f0ece7;
}

.process {
  background: #e8e1d8;
}

.testimonials {
  background: #f7f4f0;
}

.form-section {
  background: #e3d7cb;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-row span {
  background: #1f2022;
  color: #f7f4f0;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.list,
.steps {
  padding-left: 20px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}

.price-list h3 {
  margin: 0 0 4px;
}

.quote {
  margin-bottom: 18px;
  padding: 18px;
  border-left: 3px solid #1f2022;
  background: #f0ece7;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-form input,
.booking-form select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #b7b0a8;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  margin: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 6%;
  background: #1f2022;
  color: #f7f4f0;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #1f2022;
  color: #f7f4f0;
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  background: #e8e1d8;
}

.page-hero h1 {
  margin-top: 0;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #f0ece7;
  border-radius: 16px;
}

.service-card img {
  flex: 1 1 200px;
}

.service-info {
  flex: 2 1 260px;
}

.contact-card {
  background: #f0ece7;
  padding: 24px;
  border-radius: 16px;
}

.legal {
  padding: 60px 6%;
}

.legal h1 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
