/* Dream Lands — Header + nav + drawer */
/* ===== Header ===== */
header {
  background: linear-gradient(to bottom,
      rgba(8, 14, 10, 0.55) 0%,
      rgba(8, 14, 10, 0.38) 45%,
      rgba(8, 14, 10, 0.12) 80%,
      rgba(8, 14, 10, 0) 100%);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  transition: all ease .25s;
}



.header-inner {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 56px;
}

.header-inner .brand {
  justify-self: start;
}

.header-inner #header-nav {
  justify-self: center;
}

.header-inner .header-right-actions {
  justify-self: end;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.brand em {
  color: var(--green);
  font-style: normal;
}

.brand span {
  color: var(--muted);
  font-weight: 400;
  font-size: .82em;
}

.header-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}


