:root {
  --carbon-black: #232222;
  --blaze-orange: #ff5c00;
  --silver: #bdb8b4;
  --white: #ffffff;
  --page-x: clamp(32px, 7.3vw, 105px);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--carbon-black);
  color: var(--white);
  font-family: "Red Hat Display", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--carbon-black);
}

.content {
  position: relative;
  z-index: 2;
  width: 715px;
  max-width: calc(100% - 180px);
  margin-left: var(--page-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 43px;
}

.logo {
  width: 190px;
  height: auto;
}

.copy {
  width: 100%;
}

.heading {
  margin: 0;
  color: var(--silver);
  font-family: "ivyora-display", serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  font-feature-settings: "liga" off, "clig" off;
}

.heading span {
  color: var(--blaze-orange);
}

.description {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Red Hat Display", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  font-feature-settings: "liga" off, "clig" off;
}

.contacts {
  margin: 0;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  font-feature-settings: "liga" off, "clig" off;
}

.contact-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-lines a {
  color: inherit;
  text-decoration: none;
}

.contact-lines a:hover {
  color: var(--blaze-orange);
}

.pattern {
  pointer-events: none;
  z-index: 1;
}

.pattern--desktop {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background-image: url("./assets/Group.svg");
  background-repeat: repeat-y;
  background-position: top right;
  background-size: 120px auto;
}

.pattern--mobile {
  display: none;
}

@media (max-width: 900px) {
  .coming-soon {
    align-items: center;
  }

  .content {
    width: 430px;
    max-width: calc(100% - 110px);
    margin-left: 46px;
    gap: 34px;
  }

  .logo {
    width: 145px;
  }

  .heading {
    max-width: 330px;
    font-size: 36px;
    line-height: 46px;
  }

  .description {
    max-width: 350px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
  }

  .pattern--desktop {
    width: 78px;
    background-size: 78px auto;
  }
}

@media (max-width: 520px) {

  .coming-soon {
    min-height: 100svh;
    padding: 76px 24px;
    align-items: center;
    justify-content: center;
  }

  .content {
    width: 100%;
    max-width: 360px;
    margin: 0;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .logo {
    width: 132px;
  }

  .heading {
    max-width: 100%;
    margin: 0;
    color: var(--silver);
    text-align: center;
    font-family: "ivyora-display", serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    font-feature-settings: "liga" off, "clig" off;
  }

  .heading span {
    display: block;
    color: var(--blaze-orange);
  }

  .description {
    max-width: 360px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: "Red Hat Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    font-feature-settings: "liga" off, "clig" off;
  }

  .contacts {
    align-items: center;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
  }

  .contact-icon {
    display: none;
  }

  .contact-group {
    display: flex;
    justify-content: center;
    gap: 0;
  }

  .contact-lines {
    align-items: center;
  }

  .pattern--desktop {
    display: none;
  }

  .pattern--mobile {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url("./assets/Group.svg");
    background-repeat: repeat-x;
    background-size: auto 30px;
  }

  .pattern--top {
    top: 0;
  }

  .pattern--bottom {
    bottom: 0;
  }
}
