:root {
  --paper: #f4efe7;
  --muted: rgba(244, 239, 231, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --orange: #ff663d;
  --peach: #ffb28c;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #06111d;
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.background {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("assets/sailovia-hero.webp") 68% center / cover no-repeat;
}

.overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 47%, transparent 0 16%, rgba(4, 12, 20, 0.12) 35%),
    linear-gradient(90deg, rgba(4, 13, 23, 0.98) 0%, rgba(4, 13, 23, 0.9) 34%, rgba(4, 13, 23, 0.48) 58%, rgba(4, 13, 23, 0.15) 100%),
    linear-gradient(0deg, rgba(3, 10, 17, 0.88) 0%, transparent 34%, rgba(3, 10, 17, 0.22) 100%);
}

header {
  min-height: 126px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: block;
  width: clamp(210px, 24vw, 340px);
  height: auto;
}

.content {
  align-self: center;
  max-width: 860px;
  padding: clamp(52px, 8vh, 96px) 0;
}

.label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--peach);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--orange);
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(58px, 7.4vw, 118px);
  font-weight: 390;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h1 em {
  color: #f2c19f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.description {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(244, 239, 231, 0.76);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.contact {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact span {
  color: rgba(244, 239, 231, 0.42);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact strong {
  font-size: 14px;
  font-weight: 540;
}

footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 231, 0.42);
  font-size: 11px;
}

@media (max-width: 700px) {
  .coming-soon {
    padding: 0 22px;
  }

  .background {
    background-position: 66% center;
  }

  .overlay {
    background:
      linear-gradient(0deg, rgba(4, 13, 23, 0.98) 0%, rgba(4, 13, 23, 0.86) 58%, rgba(4, 13, 23, 0.36) 100%),
      linear-gradient(90deg, rgba(4, 13, 23, 0.58), rgba(4, 13, 23, 0.14));
  }

  header {
    min-height: 96px;
  }

  .logo {
    width: 210px;
  }

  .content {
    align-self: end;
    padding: 150px 0 48px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 70px);
  }

  .description {
    font-size: 16px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  footer {
    min-height: 86px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }
}
