.sw-header {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #fdf5e6;
  color: #020a19;
  position: relative;
  z-index: 2000;
}

.sw-header::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  width: 100vw;
  background: #fdf5e6;
  transform: translateX(-50%);
  z-index: -1;
}

.sw-header .sw-brand {
  color: #020a19;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.sw-header .sw-egg-slot {
  display: inline-block;
  width: .72em;
  height: .96em;
  vertical-align: -.16em;
}

.sw-header .sw-egg-slot img { width: 100%; height: 100%; display: block; object-fit: fill; }
.sw-header .sw-nav { display: block; }
.sw-header .sw-nav ul { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.sw-header .sw-nav a { color: #020a19; text-decoration: none; font-family: Inter, sans-serif; font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.sw-header .sw-nav a:hover, .sw-header .sw-nav a:focus-visible { opacity: .55; }
.sw-header .sw-menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 2px solid #020a19; background: #fdf5e6; color: #020a19; font-size: 1.45rem; cursor: pointer; }

@media (max-width: 900px) {
  .sw-header { min-height: 78px; padding: 0 6%; }
  .sw-header .sw-brand { font-size: 1.7rem; }
  .sw-header .sw-menu-toggle { display: inline-flex; }
  .sw-header .sw-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1.5rem 6%; background: #fdf5e6; }
  .sw-header .sw-nav.open { display: block; }
  .sw-header .sw-nav ul { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
