* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1a17;
  background: #f8f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

header {
  padding: 24px 18px 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin: 8px 18px 0;
  background: #2b2a25;
  color: #fff;
}

.hero-image {
  opacity: 0.75;
  min-height: 320px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.1;
}

.hero p {
  max-width: 520px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: #f05a28;
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 90, 40, 0.25);
}

.secondary-btn {
  background: #1b1a17;
  color: #fff;
}

.ghost-btn {
  border: 1px solid rgba(27, 26, 23, 0.2);
  color: #1b1a17;
  background: rgba(255, 255, 255, 0.65);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 64px 18px;
}

.section--airy {
  padding: 80px 18px;
}

.section--dense {
  padding: 48px 18px;
}

.section-light {
  background: #fff;
}

.section-accent {
  background: #fdf0e6;
}

.section-dark {
  background: #1b1a17;
  color: #fff;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #f05a28;
  font-weight: 600;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(27, 26, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.12);
  color: #f05a28;
  font-weight: 600;
  font-size: 0.8rem;
}

.quote {
  font-size: 1.4rem;
  font-style: italic;
}

.testimonial {
  border-left: 2px solid #f05a28;
  padding-left: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(27, 26, 23, 0.12);
  background: #fff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f05a28;
}

.form-box {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(27, 26, 23, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 26, 23, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: #f05a28;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1a17;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 24px rgba(27, 26, 23, 0.25);
  z-index: 5;
}

.footer {
  padding: 36px 18px 60px;
  background: #0f0e0c;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px;
  border-top: 1px solid rgba(27, 26, 23, 0.2);
  display: none;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 14px;
}

@media (min-width: 768px) {
  .nav-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .content {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .badge-row {
    flex-direction: row;
  }

  .badge {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner.visible {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 22px;
  }
}
