* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #e8e8e8;
  font-family: Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.page {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vh, 44px) 24px;
}

.hero {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.logo {
  width: min(70vw, 400px);
  height: auto;
  display: block;
  margin: 0 auto clamp(30px, 5vh, 42px);
}

h1 {
  margin: 0 0 clamp(18px, 3vh, 24px);
  font-size: clamp(16px, 2.5vh, 19px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}

.subtitle,
.location {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.subtitle {
  color: #d8d8d8;
  font-size: clamp(11px, 1.8vh, 13px);
  line-height: 1.7;
}

.location {
  color: #9f9f9f;
  font-size: clamp(10px, 1.55vh, 12px);
  line-height: 1.6;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(34px, 7vh, 54px);
  gap: clamp(9px, 1.8vh, 12px);
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(28px, 5.5vh, 42px);
  gap: 9px;
  color: #bdbdbd;
}

a {
  color: #e2e2e2;
  text-decoration: none;
  font-size: clamp(10px, 1.5vh, 11px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contacts a,
.contacts span {
  color: #d0d0d0;
  font-size: clamp(10px, 1.5vh, 11px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

a:hover,
a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 520px) {
  .page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo {
    width: min(76vw, 330px);
  }

  h1 {
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }

  .links {
    gap: 11px;
  }

  .contacts {
    gap: 8px;
  }
}

@media (max-height: 680px) {
  .logo {
    width: min(58vw, 280px);
  }

  .links {
    margin-top: 30px;
  }

  .contacts {
    margin-top: 26px;
  }
}
