*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: #0d0d0d;
  font-family: "DM Sans", "Archivo", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  color: #267CB9;
  text-decoration: none;
}
a:hover, a:focus {
  color: #069;
  text-decoration: underline;
}

hr {
  border: 0;
  background: #d0d0d0;
  height: 1px;
  margin: 0 0 2rem;
}

body {
  background: #ffffff;
  color: #ffffff;
  font-family: "DM Sans", "Archivo", Helvetica, Arial, sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.menu-wrap {
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-bar {
  height: 56px;
  border-bottom: 1px solid #222;
  flex-shrink: 0;
}

.menu-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
}

.menu-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.menu-bar__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.menu-bar__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.2s ease;
}
.menu-bar__close:hover {
  opacity: 0.6;
  color: #ffffff;
  text-decoration: none;
}

.menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 3rem;
}

.menu-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.menu-identity__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.menu-identity__name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.menu-links {
  list-style: none;
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 0;
}
.menu-links li {
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.menu-links li:first-child {
  border-top: 1px solid #222;
}
.menu-links li a {
  display: inline;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}
.menu-links li a:hover {
  color: #ffffff;
  text-decoration: none;
}

/*# sourceMappingURL=menu.css.map */