/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1a18;
  background: #faf7f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  padding: 56px 20px;
}

.section--tight {
  padding: 32px 20px;
}

.section--layer {
  background: #f0e6dc;
}

.section--dark {
  background: #1b1a18;
  color: #f6f1ea;
}

.section--accent {
  background: #f8efe2;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__media {
  border-radius: 24px;
  overflow: hidden;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1b1a18;
  color: #fff3e5;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1a18;
  background: #1b1a18;
  color: #f7f0e9;
  font-weight: 600;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: inherit;
}

.btn--light {
  background: #f7f0e9;
  color: #1b1a18;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7d9c9;
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e9dccc;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery__item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e9dccc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c8b5;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: center;
  background: #1b1a18;
  color: #fff3e5;
  border-radius: 999px;
  padding: 10px 22px;
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: #5a5249;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e9dccc;
  font-size: 0.85rem;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1b1a18;
  color: #f6f1ea;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner__btn {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #f6f1ea;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.banner__btn--solid {
  background: #f6f1ea;
  color: #1b1a18;
}

@media (min-width: 800px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero__media {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col--reverse {
    flex-direction: row-reverse;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery__item {
    flex: 1;
  }

  .trust-bar {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 calc(50% - 16px);
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }
}
