* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f5f1ea;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw 18px;
  gap: 24px;
}

.nav__logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.nav__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  transition: all 0.2s ease;
  background: #fff;
}

.nav__cta:hover {
  background: #1f1f1f;
  color: #fff;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section--hero {
  padding-top: 30px;
}

.section__split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section__split--reverse {
  flex-direction: column-reverse;
}

.section__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: #5c5347;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 16px;
  border: none;
  background: #1f1f1f;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn--ghost {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.inline-link {
  border-bottom: 2px solid #1f1f1f;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 22px 40px rgba(28, 20, 10, 0.12);
  position: relative;
  top: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #d9cbb7;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.section--map {
  background: #efe7dc;
}

.section--gallery {
  background: #ffffff;
}

.section--trust {
  background: #e8dfd1;
}

.section--services {
  background: #f3efe7;
}

.section--form {
  background: #ffffff;
}

.section--resources {
  background: #f0e6d8;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 28px rgba(28, 20, 10, 0.08);
}

.card__meta {
  font-size: 0.9rem;
  color: #5b5144;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(28, 20, 10, 0.12);
}

.service__price {
  font-weight: 700;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f5f1ea;
  border: 1px solid rgba(31, 31, 31, 0.12);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 31, 31, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.form-note {
  font-size: 0.85rem;
  color: #4c443a;
}

.aside-block {
  background: #1f1f1f;
  color: #fff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer {
  padding: 32px 6vw 40px;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-page {
  padding: 40px 6vw 80px;
  max-width: 920px;
}

.simple-page__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }

  .section__split {
    flex-direction: row;
    align-items: center;
  }

  .section__split--reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .service-grid,
  .stats {
    flex-direction: row;
  }

  .card,
  .service,
  .stat {
    flex: 1;
  }

  .lead-form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lead-form .field,
  .lead-form .service-select {
    flex: 1 1 240px;
  }

  .lead-form textarea {
    flex: 1 1 100%;
  }

  .section--hero .offset-card {
    top: -18px;
  }
}
