.soon-page {
  min-height: 100vh;
  background: #f4f7f6;
  color: #1d2d34;
  font-family: "Work Sans", Arial, sans-serif;
}

.soon-header {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 46px);
  color: #ffffff;
}

.soon-brand,
.soon-contact,
.soon-actions a {
  color: inherit;
  text-decoration: none;
}

.soon-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.soon-brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #2b8a7d;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.soon-contact {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: rgba(9, 25, 32, 0.18);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.soon-hero {
  display: grid;
  min-height: 86vh;
  align-items: end;
  padding: 120px clamp(22px, 6vw, 82px) clamp(48px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(14, 35, 43, 0.84) 0%, rgba(14, 35, 43, 0.62) 42%, rgba(14, 35, 43, 0.18) 100%),
    url("../img/malaga-city-view.jpg") center / cover no-repeat;
}

.soon-hero__content {
  width: min(860px, 100%);
  color: #ffffff;
}

.soon-kicker {
  margin: 0 0 18px;
  color: #a8ebe0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.soon-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 0.98;
}

.soon-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.soon-actions span,
.soon-actions a {
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.soon-actions span {
  background: #2b8a7d;
  color: #ffffff;
}

.soon-actions a {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.soon-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #d7e4e0;
}

.soon-strip article {
  min-height: 210px;
  padding: clamp(26px, 4vw, 44px);
  background: #f8fbfa;
}

.soon-strip span {
  color: #2b8a7d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.soon-strip h2 {
  margin: 24px 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.soon-strip p {
  max-width: 360px;
  margin: 0;
  color: #53666e;
  font-size: 16px;
  line-height: 1.55;
}

.soon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 46px);
  color: #5a6b72;
  font-size: 14px;
}

.soon-footer p {
  margin: 0;
}

.soon-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.soon-footer a {
  color: #244859;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 820px) {
  .soon-header {
    color: #1d2d34;
    background: rgba(248, 251, 250, 0.94);
    box-shadow: 0 1px 0 rgba(31, 49, 55, 0.12);
  }

  .soon-contact {
    border-color: #c7d8d4;
    background: #ffffff;
  }

  .soon-hero {
    min-height: 78vh;
    padding-top: 116px;
    background:
      linear-gradient(180deg, rgba(14, 35, 43, 0.42) 0%, rgba(14, 35, 43, 0.86) 100%),
      url("../img/malaga-city-view.jpg") center / cover no-repeat;
  }

  .soon-strip {
    grid-template-columns: 1fr;
  }

  .soon-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .soon-header {
    padding: 14px 16px;
  }

  .soon-brand strong {
    display: none;
  }

  .soon-contact {
    font-size: 13px;
  }

  .soon-hero h1 {
    font-size: 42px;
  }
}
