.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: #606a78;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  font-size: 13px;
}

.global-nav a {
  position: relative;
  padding: 14px 0;
  color: var(--navy);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.global-nav a:hover::after,
.global-nav a.is-current::after {
  width: 100%;
}

.global-nav .nav-recruit {
  min-width: 144px;
  padding: 18px 34px;
  color: #fff;
  text-align: center;
  background: var(--red);
}

.global-nav .nav-recruit::after {
  display: none;
}

.nav-toggle {
  display: none;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
  }
  .brand-name {
    font-size: 14px;
  }

  .global-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 24px;
    background: #fff;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  }

  .global-nav.is-open {
    display: grid;
  }

  .global-nav .nav-recruit {
    width: 100%;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
  }
}
