* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f8f5f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 20px 6vw;
  background: #f8f5f0;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2eee7;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split-column.compact {
  flex: 0 1 48%;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #1c1c1c;
  color: #f8f5f0;
}

.section.texture {
  background: #fff9f1 url("assets/bg-texture.svg") no-repeat right bottom;
  background-size: 340px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: #7a6d58;
}

.headline {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.2;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  max-width: 48ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #d94d2c;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #f0e4d6;
  color: #1c1c1c;
}

.cta.ghost {
  background: transparent;
  border: 1px solid #d94d2c;
  color: #d94d2c;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.deep {
  background: #2b2621;
  color: #f8f5f0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-action {
  margin-top: auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #d94d2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6c9ba;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 6vw;
  background: #1c1c1c;
  color: #f8f5f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.two-columns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f0e4d6;
  font-weight: 600;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-list {
  padding-left: 18px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
