* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #f7f4f0;
  border-bottom: 1px solid #e2dcd6;
  padding: 1.5rem 5vw;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f0e9e1;
}

.hero {
  padding: 3rem 5vw;
  background: #101820;
  color: #fefcf9;
}

.hero .split {
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero p {
  max-width: 30rem;
  margin-bottom: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #f0b43a;
  color: #1d1d1f;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: #fefcf9;
  border: 1px solid #1d1d1f;
}

.button:hover {
  transform: translateY(-2px);
  background: #f6c65f;
}

.section {
  padding: 3.5rem 5vw;
}

.section.alt {
  background: #fff9f2;
}

.section.dark {
  background: #1d1d1f;
  color: #f7f4f0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.split-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.card strong {
  font-size: 1.1rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  background: #f0e9e1;
  border-radius: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #f0b43a;
}

.sticky-cta {
  position: sticky;
  top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

.form-block {
  background: #fff9f2;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d9cfc4;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-buttons button {
  background: #ffffff;
  border: 1px solid #d9cfc4;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.service-buttons button.active {
  background: #1d1d1f;
  color: #f7f4f0;
  border-color: #1d1d1f;
}

.quote {
  font-style: italic;
  background: #f0e9e1;
  padding: 1.5rem;
  border-radius: 18px;
}

.site-footer {
  background: #101820;
  color: #f7f4f0;
  padding: 2rem 5vw;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 1rem 1.5rem;
  max-width: 520px;
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1d1d1f;
  color: #f7f4f0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.two-columns {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fef3dd;
  font-weight: 600;
}

.callout {
  background: #1d1d1f;
  color: #f7f4f0;
  padding: 2rem;
  border-radius: 22px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1rem;
}

.list li {
  list-style: square;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fef3dd;
  padding: 2rem;
  border-radius: 24px;
}

.note {
  font-size: 0.95rem;
  color: #5c5249;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .price-row {
    flex: 1;
  }

  .two-columns {
    flex-direction: row;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
