* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 28px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}

.brand span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #5f5d59;
}

.hero {
  padding: 48px 6vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 52px 6vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-content h1,
.split-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.split-content p {
  color: #3c3a37;
  font-size: 1rem;
}

.pill {
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #1b1b1b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.layer {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #f0ede8;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card strong {
  font-size: 1.1rem;
}

.service-card span {
  font-size: 0.95rem;
  color: #4d4b47;
}

.price {
  font-weight: 700;
  color: #1b1b1b;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: #1b1b1b;
  color: #fff;
  padding: 24px;
  border-radius: 22px;
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d1c8;
  font-size: 1rem;
  background: #fff;
}

.footer {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1b1b1b;
  color: #fff;
}

.footer a {
  color: #fff;
  opacity: 0.8;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #eac15a;
  color: #1b1b1b;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-dark {
  background: #1b1b1b;
  color: #fff;
}

.section-dark a {
  color: #fff;
}

.section-muted {
  background: #ebe6dc;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .grid {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .two-col {
    flex-direction: row;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 380px;
  }
}
