.header {
  display: flex;
  width: 100%;
  padding: 38px 120px;
  justify-content: center;
  align-items: center;
  background: #150b09;
}

.header__inner {
  width: 100%;
  margin: auto;
  max-width: 1440px;
  display: flex;
  justify-content: center;
}

.header .logo {
  margin: auto;
  width: 350px;
  height: 52px;
}

.header__inner > nav {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.header__inner > nav > .link {
  display: block;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 21.6px */
  position: relative;
}

.header__inner > nav > .button {
  padding: 12px 16px;
  width: fit-content;
  min-width: fit-content;
  color: #fff;
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.55);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 19.2px */
}

.header__inner > nav > .button[data-ruby]::before {
  text-align: center;
  top: -0.3em;
}

#menu-toggle {
  display: none;
}
#mobile-menu {
  padding: 16px 24px;
  width: 100%;
  position: absolute;
  top: 59px;
  left: 0;
  right: 0;
  background: #150b09;
  z-index: 999;
}

@media only screen and (min-width: 1201px) and (max-width: 1360px) {
  .header {
    padding: 38px 16px;
  }
}

@media only screen and (min-width: 1081px) and (max-width: 1200px) {
  .header {
    padding: 38px 16px;
  }
  .header__inner > nav {
    column-gap: 8px;
  }
}

@media only screen and (max-width: 1080px) {
  .header {
    padding: 14px 16px;
  }
  .header .logo {
    width: 210px;
    height: 31px;
  }
  .header__inner > nav {
    display: none;
  }
  #menu-toggle {
    display: block;
  }
}
