/* Renovation page */

.renovation-hero {
  background:
    linear-gradient(
      90deg,
      rgba(245, 247, 251, 0.97) 0%,
      rgba(245, 247, 251, 0.91) 40%,
      rgba(245, 247, 251, 0.55) 100%
    ),
    url("assets/renovation-hero.png") center right / cover no-repeat;
}

.renovation-services .service-card {
  min-height: 280px;
  overflow: hidden;
}

.renovation-service-image {
  width: calc(100% + 56px);
  height: 190px;
  margin: -28px -28px 24px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.renovation-service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.renovation-message {
  text-align: center;
}

.renovation-message h2,
.renovation-message .lead {
  max-width: 820px;
  margin-inline: auto;
}

/* Responsive */

@media (max-width: 680px) {
  .renovation-hero {
    background:
            linear-gradient(
                    180deg,
                    rgba(245, 247, 251, 0.97) 0%,
                    rgba(245, 247, 251, 0.92) 58%,
                    rgba(245, 247, 251, 0.84) 100%
            ),
            url("assets/renovation-hero.png") 68% center / cover no-repeat;
  }

  .renovation-services {
    gap: 12px;
  }

  .renovation-services .service-card {
    min-height: auto;
    padding: 14px;
    text-align: center;
  }

  .renovation-services .service-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.25;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .renovation-services .service-card p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .renovation-service-image {
    width: calc(100% + 28px);
    height: 180px;
    margin: -14px -14px 18px;
  }

  .renovation-message {
    padding: 72px 0;
  }

  .renovation-message h2 {
    max-width: none;
    font-size: clamp(27px, 9vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  .renovation-message .lead {
    max-width: none;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    text-wrap: balance;
  }
}
