.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 32px;
  background: rgba(10, 14, 20, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(53, 208, 192, 0.16);
}
.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 0;
}
.brandmark {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.brandmark .logotype {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brandmark .logotype .m {
  color: var(--ink);
  margin-right: -5px;
}
.brandmark .logotype .b {
  color: var(--accent);
}
.brandmark .fullname {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--accent);
}
.site-nav a.active {
  color: var(--accent);
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--accent);
}
body {
  padding-top: 78px;
}

@media (max-width: 720px) {
  .brandmark .fullname {
    display: none;
  }
  .site-nav {
    gap: 16px;
  }
  .site-header {
    padding: 0 18px;
  }
}

@media (max-width: 460px) {
  .site-nav a {
    font-size: 12px;
    letter-spacing: 0.14em;
  }
  .site-nav {
    gap: 12px;
  }
}
